diff --git a/app/client/cypress/Dockerfile b/app/client/cypress/Dockerfile new file mode 100644 index 000000000000..c8887c4feee3 --- /dev/null +++ b/app/client/cypress/Dockerfile @@ -0,0 +1,11 @@ +#ARG CHROME_VERSION="126.0.6478.114-1" +ARG YARN_VERSION='1.22.22' +ARG NODE_VERSION='20.11.1' +ARG CYPRESS_VERSION='13.5.1' +FROM cypress/factory:4.0.2 + +# Install chromium in this way since there is no browsers in the docker container for the arm64 architecture +# https://github.com/cypress-io/cypress-docker-images/issues/695 +RUN apt update && apt install -y chromium + +ENTRYPOINT ["yarn", "cypress:snapshot"] diff --git a/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilCheckboxGroupWidgetSnapshot_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilCheckboxGroupWidgetSnapshot_spec.ts new file mode 100644 index 000000000000..2de30c91dd04 --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilCheckboxGroupWidgetSnapshot_spec.ts @@ -0,0 +1,28 @@ +import { ANVIL_EDITOR_TEST } from "../../../../../support/Constants"; +import { + agHelper, + anvilSnapshot, +} from "../../../../../support/Objects/ObjectsCore"; + +describe( + `${ANVIL_EDITOR_TEST}: Anvil tests for Checkbox Group Widget`, + { tags: ["@tag.Anvil"] }, + () => { + before(() => { + agHelper.AddDsl("anvilCheckboxGroupWidget"); + }); + + it("1. Canvas Mode", () => { + anvilSnapshot.triggerCheckboxGroupInvalidState(); + anvilSnapshot.verifyCanvasMode("CheckboxGroupWidget"); + }); + + it("2. Preview Mode", () => { + anvilSnapshot.verifyPreviewMode("CheckboxGroupWidget"); + }); + + it("3. Deploy Mode", () => { + anvilSnapshot.verifyDeployMode("CheckboxGroupWidget"); + }); + }, +); diff --git a/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilCheckboxWidgetSnapshot_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilCheckboxWidgetSnapshot_spec.ts new file mode 100644 index 000000000000..ea3238adcba5 --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilCheckboxWidgetSnapshot_spec.ts @@ -0,0 +1,27 @@ +import { ANVIL_EDITOR_TEST } from "../../../../../support/Constants"; +import { + agHelper, + anvilSnapshot, +} from "../../../../../support/Objects/ObjectsCore"; + +describe( + `${ANVIL_EDITOR_TEST}: Anvil tests for Checkbox Widget`, + { tags: ["@tag.Anvil"] }, + () => { + before(() => { + agHelper.AddDsl("anvilCheckboxWidget"); + }); + + it("1. Canvas Mode", () => { + anvilSnapshot.verifyCanvasMode("CheckboxWidget"); + }); + + it("2. Preview Mode", () => { + anvilSnapshot.verifyPreviewMode("CheckboxWidget"); + }); + + it("3. Deploy Mode", () => { + anvilSnapshot.verifyDeployMode("CheckboxWidget"); + }); + }, +); diff --git a/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilHeadingWidgetSnapshot_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilHeadingWidgetSnapshot_spec.ts new file mode 100644 index 000000000000..ac83277ceb89 --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilHeadingWidgetSnapshot_spec.ts @@ -0,0 +1,27 @@ +import { ANVIL_EDITOR_TEST } from "../../../../../support/Constants"; +import { + agHelper, + anvilSnapshot, +} from "../../../../../support/Objects/ObjectsCore"; + +describe( + `${ANVIL_EDITOR_TEST}: Anvil tests for Heading Widget`, + { tags: ["@tag.Anvil"] }, + () => { + before(() => { + agHelper.AddDsl("anvilHeadingWidget"); + }); + + it("1. Canvas Mode", () => { + anvilSnapshot.verifyCanvasMode("HeadingWidget"); + }); + + it("2. Preview Mode", () => { + anvilSnapshot.verifyPreviewMode("HeadingWidget"); + }); + + it("3. Deploy Mode", () => { + anvilSnapshot.verifyDeployMode("HeadingWidget"); + }); + }, +); diff --git a/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilInputWidgetSnapshot_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilInputWidgetSnapshot_spec.ts index 70a9ff34fbfa..0a2bc6db2364 100644 --- a/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilInputWidgetSnapshot_spec.ts +++ b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilInputWidgetSnapshot_spec.ts @@ -5,7 +5,7 @@ import { } from "../../../../../support/Objects/ObjectsCore"; describe( - `${ANVIL_EDITOR_TEST}: Anvil tests for Button Widget`, + `${ANVIL_EDITOR_TEST}: Anvil tests for Input Widget`, { tags: ["@tag.Anvil"] }, () => { before(() => { diff --git a/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilParagraphWidgetSnapshot_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilParagraphWidgetSnapshot_spec.ts new file mode 100644 index 000000000000..59660d204724 --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilParagraphWidgetSnapshot_spec.ts @@ -0,0 +1,27 @@ +import { ANVIL_EDITOR_TEST } from "../../../../../support/Constants"; +import { + agHelper, + anvilSnapshot, +} from "../../../../../support/Objects/ObjectsCore"; + +describe( + `${ANVIL_EDITOR_TEST}: Anvil tests for Paragraph Widget`, + { tags: ["@tag.Anvil"] }, + () => { + before(() => { + agHelper.AddDsl("anvilParagraphWidget"); + }); + + it("1. Canvas Mode", () => { + anvilSnapshot.verifyCanvasMode("ParagraphWidget"); + }); + + it("2. Preview Mode", () => { + anvilSnapshot.verifyPreviewMode("ParagraphWidget"); + }); + + it("3. Deploy Mode", () => { + anvilSnapshot.verifyDeployMode("ParagraphWidget"); + }); + }, +); diff --git a/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilRadioGroupWidgetSnapshot_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilRadioGroupWidgetSnapshot_spec.ts new file mode 100644 index 000000000000..fbd3c89d5061 --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilRadioGroupWidgetSnapshot_spec.ts @@ -0,0 +1,27 @@ +import { ANVIL_EDITOR_TEST } from "../../../../../support/Constants"; +import { + agHelper, + anvilSnapshot, +} from "../../../../../support/Objects/ObjectsCore"; + +describe( + `${ANVIL_EDITOR_TEST}: Anvil tests for Radio Group Widget`, + { tags: ["@tag.Anvil"] }, + () => { + before(() => { + agHelper.AddDsl("anvilRadioGroupWidget"); + }); + + it("1. Canvas Mode", () => { + anvilSnapshot.verifyCanvasMode("RadioGroupWidget"); + }); + + it("2. Preview Mode", () => { + anvilSnapshot.verifyPreviewMode("RadioGroupWidget"); + }); + + it("3. Deploy Mode", () => { + anvilSnapshot.verifyDeployMode("RadioGroupWidget"); + }); + }, +); diff --git a/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilStatsWidgetSnapshot_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilStatsWidgetSnapshot_spec.ts new file mode 100644 index 000000000000..56f9d3b032d7 --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilStatsWidgetSnapshot_spec.ts @@ -0,0 +1,27 @@ +import { ANVIL_EDITOR_TEST } from "../../../../../support/Constants"; +import { + agHelper, + anvilSnapshot, +} from "../../../../../support/Objects/ObjectsCore"; + +describe( + `${ANVIL_EDITOR_TEST}: Anvil tests for Stats Widget`, + { tags: ["@tag.Anvil"] }, + () => { + before(() => { + agHelper.AddDsl("anvilStatsWidget"); + }); + + it("1. Canvas Mode", () => { + anvilSnapshot.verifyCanvasMode("StatsWidget"); + }); + + it("2. Preview Mode", () => { + anvilSnapshot.verifyPreviewMode("StatsWidget"); + }); + + it("3. Deploy Mode", () => { + anvilSnapshot.verifyDeployMode("StatsWidget"); + }); + }, +); diff --git a/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilSwitchGroupWidgetSnapshot_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilSwitchGroupWidgetSnapshot_spec.ts new file mode 100644 index 000000000000..798a9e23390f --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilSwitchGroupWidgetSnapshot_spec.ts @@ -0,0 +1,27 @@ +import { ANVIL_EDITOR_TEST } from "../../../../../support/Constants"; +import { + agHelper, + anvilSnapshot, +} from "../../../../../support/Objects/ObjectsCore"; + +describe( + `${ANVIL_EDITOR_TEST}: Anvil tests for Switch Group Widget`, + { tags: ["@tag.Anvil"] }, + () => { + before(() => { + agHelper.AddDsl("anvilSwitchGroupWidget"); + }); + + it("1. Canvas Mode", () => { + anvilSnapshot.verifyCanvasMode("SwitchGroupWidget"); + }); + + it("2. Preview Mode", () => { + anvilSnapshot.verifyPreviewMode("SwitchoGroupWidget"); + }); + + it("3. Deploy Mode", () => { + anvilSnapshot.verifyDeployMode("SwitchGroupWidget"); + }); + }, +); diff --git a/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilSwitchWidgetSnapshot_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilSwitchWidgetSnapshot_spec.ts new file mode 100644 index 000000000000..54459d397c5b --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilSwitchWidgetSnapshot_spec.ts @@ -0,0 +1,27 @@ +import { ANVIL_EDITOR_TEST } from "../../../../../support/Constants"; +import { + agHelper, + anvilSnapshot, +} from "../../../../../support/Objects/ObjectsCore"; + +describe( + `${ANVIL_EDITOR_TEST}: Anvil tests for Switch Widget`, + { tags: ["@tag.Anvil"] }, + () => { + before(() => { + agHelper.AddDsl("anvilSwitchWidget"); + }); + + it("1. Canvas Mode", () => { + anvilSnapshot.verifyCanvasMode("SwitchWidget"); + }); + + it("2. Preview Mode", () => { + anvilSnapshot.verifyPreviewMode("SwitchWidget"); + }); + + it("3. Deploy Mode", () => { + anvilSnapshot.verifyDeployMode("SwitchWidget"); + }); + }, +); diff --git a/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilTableWidgetSnapshot_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilTableWidgetSnapshot_spec.ts new file mode 100644 index 000000000000..024dc44bd679 --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilTableWidgetSnapshot_spec.ts @@ -0,0 +1,27 @@ +import { ANVIL_EDITOR_TEST } from "../../../../../support/Constants"; +import { + agHelper, + anvilSnapshot, +} from "../../../../../support/Objects/ObjectsCore"; + +describe( + `${ANVIL_EDITOR_TEST}: Anvil tests for Table Widget`, + { tags: ["@tag.Anvil"] }, + () => { + before(() => { + agHelper.AddDsl("anvilTableWidget"); + }); + + it("1. Canvas Mode", () => { + anvilSnapshot.verifyCanvasMode("TableWidget"); + }); + + it("2. Preview Mode", () => { + anvilSnapshot.verifyPreviewMode("TableWidget"); + }); + + it("3. Deploy Mode", () => { + anvilSnapshot.verifyDeployMode("TableWidget"); + }); + }, +); diff --git a/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilZoneSectionWidgetSnapshot_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilZoneSectionWidgetSnapshot_spec.ts new file mode 100644 index 000000000000..1e5f01c63551 --- /dev/null +++ b/app/client/cypress/e2e/Regression/ClientSide/Anvil/Widgets/AnvilZoneSectionWidgetSnapshot_spec.ts @@ -0,0 +1,27 @@ +import { ANVIL_EDITOR_TEST } from "../../../../../support/Constants"; +import { + agHelper, + anvilSnapshot, +} from "../../../../../support/Objects/ObjectsCore"; + +describe( + `${ANVIL_EDITOR_TEST}: Anvil tests for Zone and Section Widget`, + { tags: ["@tag.Anvil"] }, + () => { + before(() => { + agHelper.AddDsl("anvilZoneSectionWidget"); + }); + + it("1. Canvas Mode", () => { + anvilSnapshot.verifyCanvasMode("ZoneSectionWidget"); + }); + + it("2. Preview Mode", () => { + anvilSnapshot.verifyPreviewMode("ZoneSectionWidget"); + }); + + it("3. Deploy Mode", () => { + anvilSnapshot.verifyDeployMode("ZoneSectionWidget"); + }); + }, +); diff --git a/app/client/cypress/fixtures/anvilCheckboxGroupWidget.json b/app/client/cypress/fixtures/anvilCheckboxGroupWidget.json new file mode 100644 index 000000000000..498495e5db4c --- /dev/null +++ b/app/client/cypress/fixtures/anvilCheckboxGroupWidget.json @@ -0,0 +1,2577 @@ +{ + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 4896, + "snapColumns": 64, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0, + "bottomRow": 380, + "containerStyle": "none", + "snapRows": 124, + "parentRowSpace": 1, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 89, + "minHeight": 1292, + "layout": [ + { + "layoutId": "fltrdas9vq", + "layoutType": "ALIGNED_LAYOUT_COLUMN", + "layout": [ + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "01bn4j9hzo", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "ngtvj5dudq", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "7ebcy69pay", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "weuelcj11z", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "y94wadfgir", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "tlfsh6otej", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "28yordwvh4", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "zngy0eb2wu", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + ], + "layoutStyle": { + "border": "none", + "height": "100%", + "padding": "spacing-4", + "gap": "spacing-4" + }, + "isDropTarget": true, + "isPermanent": true, + "childTemplate": { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [], + "layoutId": "", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + } + ], + "dynamicTriggerPathList": [], + "parentColumnSpace": 1, + "dynamicBindingPathList": [], + "leftColumn": 0, + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone1", + "flexGrow": 12, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup1", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "qdy9ygm841", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "rr3775j6f0", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup4", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "3eivsglfnk", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s", + "version": 1, + "parentId": "rr3775j6f0", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": true, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "x10gwfepdz", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "rr3775j6f0", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup1Copy", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelTooltip": "Tooltip", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "u0k4ckzrtt", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "rr3775j6f0", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup1CopyCopy", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelTooltip": "Tooltip", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green with but long label that can't fit at all and it will need a very big space to fill it and we can't afford that right now. But surely in future", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": true, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "zfnmm75br5", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "rr3775j6f0", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup2", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "horizontal", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "lpidrr9cob", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "rr3775j6f0", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5CopyCopy8", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": true, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "udbsavpc11", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "label": "Color", + "version": 1, + "parentId": "rr3775j6f0", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5CopyCopy9", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": true, + "key": "pg5bxieejn", + "isRequired": true, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "b9mpxq6uxh", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "rr3775j6f0", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5CopyCopy10", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": true, + "key": "pg5bxieejn", + "isRequired": true, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "z8lu5ij5e0", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "label": "Color", + "version": 1, + "parentId": "rr3775j6f0", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup3", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[\n \"BLUE\"\n]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "tvnnhgepbk", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "rr3775j6f0", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "j3c7ywweia", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "rr3775j6f0", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "01bn4j9hzo", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "gpln2w0pv6", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "qdy9ygm841", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "lpidrr9cob", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "o6cgwsxfp7", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "3eivsglfnk", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "d3g22f19dt", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "x10gwfepdz", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "u0k4ckzrtt", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "zfnmm75br5", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "udgj093scr", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "udbsavpc11", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "b9mpxq6uxh", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "z8lu5ij5e0", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "tvnnhgepbk", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "ztg9s4wumm", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "mshcgzoyaj", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "01bn4j9hzo", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 1, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "rr3775j6f0", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "hnptmyxyjw", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "rr3775j6f0": 12 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section2", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5Copy", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "xyxfdouuyp", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "5bqafbq918", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "hqirpxwlet", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "5bqafbq918", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "7ebcy69pay", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "1mghzmvbg6", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "xyxfdouuyp", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "31il5824kn", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5CopyCopy", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "6t2m3q7gl5", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "ronwkiluky", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "hqirpxwlet", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "ronwkiluky", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "7ebcy69pay", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "4kc5hpj33n", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "6t2m3q7gl5", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "pgsh9fyxk9", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "12qdw3rl11", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "7ebcy69pay", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "5bqafbq918", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "ronwkiluky", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "4atw4ku9n1", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "5bqafbq918": 6, + "ronwkiluky": 6 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section3", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy1", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5CopyCopy1", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "5gwpcsk6yt", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "mydb6vt3t5", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "hqirpxwlet", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "mydb6vt3t5", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "y94wadfgir", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "z92fbvot1c", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "5gwpcsk6yt", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "dabipbvbx1", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy2", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5CopyCopy2", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "2ta9kmbdu5", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "9qhaxmx3oy", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "hqirpxwlet", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "9qhaxmx3oy", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "y94wadfgir", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "et8tlpbiqj", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "2ta9kmbdu5", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "4kqyox2uiw", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy3", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5CopyCopy3", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "uwh3xa8np6", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "c4frnxuh9b", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "hqirpxwlet", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "c4frnxuh9b", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "y94wadfgir", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "1p0u6qlf0n", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "uwh3xa8np6", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "s4nj4mfzty", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "12qdw3rl11", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "y94wadfgir", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 3, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "mydb6vt3t5", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "9qhaxmx3oy", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "c4frnxuh9b", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "q5izbf39dz", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "mydb6vt3t5": 4, + "9qhaxmx3oy": 4, + "c4frnxuh9b": 4 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section4", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy4", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5CopyCopy4", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "egywey00ye", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "856fqosdta", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "hqirpxwlet", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "856fqosdta", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "28yordwvh4", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "neuzjzitxl", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "egywey00ye", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "dqe672ueu3", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy5", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5CopyCopy5", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "etwdwadqqr", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "rp3tcirrjc", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "hqirpxwlet", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "rp3tcirrjc", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "28yordwvh4", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "hjj0d25vy6", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "etwdwadqqr", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "wgnzsbm4kp", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy6", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5CopyCopy6", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "1xx26fg0d3", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "o4hk915hmg", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "hqirpxwlet", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "o4hk915hmg", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "28yordwvh4", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "kpur8bz89y", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "1xx26fg0d3", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "6fkpqsxfkb", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy7", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "CheckboxGroup5CopyCopy7", + "displayName": "Checkbox Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "pg5bxieejn", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": "[]", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "yjee6u04ll", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Color", + "version": 1, + "parentId": "sjldys00vh", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "hqirpxwlet", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "sjldys00vh", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "28yordwvh4", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "6ipjvsr5n2", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "yjee6u04ll", + "widgetType": "WDS_CHECKBOX_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "0vco5pd3j0", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "12qdw3rl11", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "28yordwvh4", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 4, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "856fqosdta", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "rp3tcirrjc", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "o4hk915hmg", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "sjldys00vh", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "g0v1kaychv", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "856fqosdta": 3, + "rp3tcirrjc": 3, + "o4hk915hmg": 3, + "sjldys00vh": 3 + } + } + ] + } +} \ No newline at end of file diff --git a/app/client/cypress/fixtures/anvilCheckboxWidget.json b/app/client/cypress/fixtures/anvilCheckboxWidget.json new file mode 100644 index 000000000000..bd9c7a871b35 --- /dev/null +++ b/app/client/cypress/fixtures/anvilCheckboxWidget.json @@ -0,0 +1,2771 @@ +{ + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 4896, + "snapColumns": 64, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0, + "bottomRow": 380, + "containerStyle": "none", + "snapRows": 124, + "parentRowSpace": 1, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 89, + "minHeight": 1292, + "layout": [ + { + "layoutId": "2s1pokfn1y", + "layoutType": "ALIGNED_LAYOUT_COLUMN", + "layout": [ + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "2vucu43ktq", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "g74gvx619n", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "sjal5kq1cj", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "0gr3dvqhoy", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "33zwrunz46", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "f22bwtrb9i", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "kuz7ittc1v", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "rwu198w1ab", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + ], + "layoutStyle": { + "border": "none", + "height": "100%", + "padding": "spacing-4", + "gap": "spacing-4" + }, + "isDropTarget": true, + "isPermanent": true, + "childTemplate": { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [], + "layoutId": "", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + } + ], + "dynamicTriggerPathList": [], + "parentColumnSpace": 1, + "dynamicBindingPathList": [], + "leftColumn": 0, + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone1", + "flexGrow": 12, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox1", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "quptiva9fh", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "p3wlx3wq4x", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": false, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox2", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "quptiva9fh", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "g7vqn1w22r", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox3", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "quptiva9fh", + "isRequired": true, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "u3s0qdzm8d", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": false, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox4", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "quptiva9fh", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "j5v89vtuci", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 150", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox5", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": true, + "key": "quptiva9fh", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "4qi0z8h32v", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox7", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": true, + "key": "quptiva9fh", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "vn79wcvwrr", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox6", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "quptiva9fh", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "hkaiwvt2kg", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox8", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "quptiva9fh", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "sp6fcgwdh4", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox10", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "rx4axm1k5g", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox10Copy", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "jyv7t73jfk", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox10Copy1", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "rw3ayn9gb6", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox10Copy2", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "mrk66fr07j", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox10Copy3", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "moqeqbz20d", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox10Copy4", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "937nroib2l", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox10Copy5", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "hqm7d98e81", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox10Copy6", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "sx0qsr5v7i", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox10Copy7", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "77evpc0n3o", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox10Copy8", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "m16tc46rd2", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "z8glc4xmlr", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "e5e6296sf4", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "z8glc4xmlr", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "2vucu43ktq", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "0utbmbulmh", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "g7vqn1w22r", + "widgetType": "WDS_CHECKBOX_WIDGET" + }, + { + "alignment": "start", + "widgetId": "p3wlx3wq4x", + "widgetType": "WDS_CHECKBOX_WIDGET" + }, + { + "alignment": "start", + "widgetId": "u3s0qdzm8d", + "widgetType": "WDS_CHECKBOX_WIDGET" + }, + { + "alignment": "start", + "widgetId": "j5v89vtuci", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "gsnkgoox6g", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "hkaiwvt2kg", + "widgetType": "WDS_CHECKBOX_WIDGET" + }, + { + "alignment": "start", + "widgetId": "4qi0z8h32v", + "widgetType": "WDS_CHECKBOX_WIDGET" + }, + { + "alignment": "start", + "widgetId": "vn79wcvwrr", + "widgetType": "WDS_CHECKBOX_WIDGET" + }, + { + "alignment": "start", + "widgetId": "sp6fcgwdh4", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "87l573jm27", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "rx4axm1k5g", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "f95hov5jd0", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "jyv7t73jfk", + "widgetType": "WDS_CHECKBOX_WIDGET" + }, + { + "alignment": "start", + "widgetId": "rw3ayn9gb6", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "npyv5wywsw", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "mrk66fr07j", + "widgetType": "WDS_CHECKBOX_WIDGET" + }, + { + "alignment": "start", + "widgetId": "moqeqbz20d", + "widgetType": "WDS_CHECKBOX_WIDGET" + }, + { + "alignment": "start", + "widgetId": "937nroib2l", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "7jl0exf8pe", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "hqm7d98e81", + "widgetType": "WDS_CHECKBOX_WIDGET" + }, + { + "alignment": "start", + "widgetId": "sx0qsr5v7i", + "widgetType": "WDS_CHECKBOX_WIDGET" + }, + { + "alignment": "start", + "widgetId": "77evpc0n3o", + "widgetType": "WDS_CHECKBOX_WIDGET" + }, + { + "alignment": "start", + "widgetId": "m16tc46rd2", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "uqht6ayq3z", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "mx9um1v1y1", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "2vucu43ktq", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 1, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "z8glc4xmlr", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "fisavjeyxk", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "z8glc4xmlr": 12 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section2", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox9", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "pwkodeoi0n", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "evezo0qu8e", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "1e09hgprnc", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "evezo0qu8e", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "sjal5kq1cj", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "id3404zco9", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "pwkodeoi0n", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "ubghu78srq", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone3", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox9Copy", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "cu4ung12z2", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "akbues56xb", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "1e09hgprnc", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "akbues56xb", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "sjal5kq1cj", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "igpgj9efgl", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "cu4ung12z2", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "4ymj4yz7o4", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone3Copy", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox9CopyCopy", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "9e8pn6tcye", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "fq2orz6qnz", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "1e09hgprnc", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "fq2orz6qnz", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "sjal5kq1cj", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "v9gu6drcmx", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "9e8pn6tcye", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "ospx93bt18", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "8bs7f9x7aq", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "sjal5kq1cj", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 3, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "evezo0qu8e", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "akbues56xb", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "fq2orz6qnz", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "rszybfwqnp", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "evezo0qu8e": 4, + "akbues56xb": 4, + "fq2orz6qnz": 4 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section3", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone3Copy1", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox9CopyCopy1", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "misnsqtf6d", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "oa00omoj6d", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "1e09hgprnc", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "oa00omoj6d", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "33zwrunz46", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "iawbubgj0r", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "misnsqtf6d", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "47teioon5i", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone3Copy2", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox9CopyCopy2", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "byllen0fvw", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "l8zt7ltn7w", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "1e09hgprnc", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "l8zt7ltn7w", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "33zwrunz46", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "x9w8b5wtys", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "byllen0fvw", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "w0bv3eyfvc", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone3Copy3", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox9CopyCopy3", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "jjqj8amego", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "wr959lwkiw", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "1e09hgprnc", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "wr959lwkiw", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "33zwrunz46", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "49hez201no", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "jjqj8amego", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "6vkyp7v7ax", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone3Copy4", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox9CopyCopy4", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "wxzltq6smt", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "io3tpqwag3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "1e09hgprnc", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "io3tpqwag3", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "33zwrunz46", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "fm7ak4yvin", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "wxzltq6smt", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "etxvsc3msb", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "8bs7f9x7aq", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "33zwrunz46", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 4, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "oa00omoj6d", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "l8zt7ltn7w", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "wr959lwkiw", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "io3tpqwag3", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "37u6h8263n", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "oa00omoj6d": 3, + "l8zt7ltn7w": 3, + "wr959lwkiw": 3, + "io3tpqwag3": 3 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section4", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone3Copy5", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox9CopyCopy5", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "c8ms1z9rbh", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "bz4iybyed8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "1e09hgprnc", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "bz4iybyed8", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "kuz7ittc1v", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "r18hu3abuc", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "c8ms1z9rbh", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "zvqt9akyuk", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone3Copy6", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Checkbox9CopyCopy6", + "displayName": "Checkbox", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_CHECKBOX_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "isDisabled": false, + "key": "gicz0cliq1", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "ag0kmpfbb8", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "95xthgi5vp", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "defaultCheckedState": true, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "1e09hgprnc", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "95xthgi5vp", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "kuz7ittc1v", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "gugp83wfz0", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "ag0kmpfbb8", + "widgetType": "WDS_CHECKBOX_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "e494cy7g7a", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "8bs7f9x7aq", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "kuz7ittc1v", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "bz4iybyed8", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "95xthgi5vp", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "l5b6p7i4an", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "bz4iybyed8": 6, + "95xthgi5vp": 6 + } + } + ] + }, + "layoutOnLoadActions": [], + "layoutOnLoadActionErrors": [], + "id": "667bf0319da472349cd2d5df", + "userPermissions": [] +} \ No newline at end of file diff --git a/app/client/cypress/fixtures/anvilHeadingWidget.json b/app/client/cypress/fixtures/anvilHeadingWidget.json new file mode 100644 index 000000000000..2af4d73edc56 --- /dev/null +++ b/app/client/cypress/fixtures/anvilHeadingWidget.json @@ -0,0 +1,2591 @@ +{ + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 4896, + "snapColumns": 64, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0, + "bottomRow": 380, + "containerStyle": "none", + "snapRows": 124, + "parentRowSpace": 1, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 89, + "minHeight": 1292, + "layout": [ + { + "layoutId": "778ox3j7mk", + "layoutType": "ALIGNED_LAYOUT_COLUMN", + "layout": [ + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "kx9uwbyz7e", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "0m00c4biks", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "k3qx0o9eht", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "jnfhjiahg9", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "548eryonq6", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "6jxifnxu1f", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "gpzvsy2z30", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "i48ek7xuky", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + ], + "layoutStyle": { + "border": "none", + "height": "100%", + "padding": "spacing-4", + "gap": "spacing-4" + }, + "isDropTarget": true, + "isPermanent": true, + "childTemplate": { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [], + "layoutId": "", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + } + ], + "dynamicTriggerPathList": [], + "parentColumnSpace": 1, + "dynamicBindingPathList": [], + "leftColumn": 0, + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone1", + "flexGrow": 12, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "44nc9fctad", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy", + "lineClamp": "1", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "iz1el3o8wf", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy1", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Lorem Ipsum is simply dummy text of the printing and typesetting industry.", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "jqin87nrtl", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy2", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "d0ku1jv46w", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy3", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "3zawjsqo38", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "subtitle", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy4", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "r5s3l9ho0r", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "title", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy5", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "center", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "0owo9rjaw7", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy6", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "right", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "l7tplc3yzd", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy7", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "8r020rc4m1", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy8", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "qt5qrpulzt", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "fontStyle": "bold", + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy9", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "o8ugpb6xe6", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "fontStyle": "italic", + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy10", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "8arj8mklvl", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "fontStyle": "bold,italic", + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy11", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "7f2fxrrdvm", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "textColor": "neutral", + "version": 1, + "parentId": "d8pgdz9yag", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "8ck1fzh2s5", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "d8pgdz9yag", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "kx9uwbyz7e", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "8nzypslc5t", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "44nc9fctad", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "ukrcd8qjbd", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "iz1el3o8wf", + "widgetType": "WDS_HEADING_WIDGET" + }, + { + "alignment": "start", + "widgetId": "jqin87nrtl", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "7zdtsvr3t8", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "d0ku1jv46w", + "widgetType": "WDS_HEADING_WIDGET" + }, + { + "alignment": "start", + "widgetId": "3zawjsqo38", + "widgetType": "WDS_HEADING_WIDGET" + }, + { + "alignment": "start", + "widgetId": "r5s3l9ho0r", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "fm72ggaqta", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "8r020rc4m1", + "widgetType": "WDS_HEADING_WIDGET" + }, + { + "alignment": "start", + "widgetId": "0owo9rjaw7", + "widgetType": "WDS_HEADING_WIDGET" + }, + { + "alignment": "start", + "widgetId": "l7tplc3yzd", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "n7bt8w1qw2", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "qt5qrpulzt", + "widgetType": "WDS_HEADING_WIDGET" + }, + { + "alignment": "start", + "widgetId": "o8ugpb6xe6", + "widgetType": "WDS_HEADING_WIDGET" + }, + { + "alignment": "start", + "widgetId": "8arj8mklvl", + "widgetType": "WDS_HEADING_WIDGET" + }, + { + "alignment": "start", + "widgetId": "7f2fxrrdvm", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "bpf8hoz9v7", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "51x494366a", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "kx9uwbyz7e", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 1, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "d8pgdz9yag", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "lxx5qshv0a", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "d8pgdz9yag": 12 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section2", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy12", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "68bcfw4we1", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "fvrdjg8q7p", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "8ck1fzh2s5", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "fvrdjg8q7p", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "k3qx0o9eht", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "msuuk4mlk7", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "68bcfw4we1", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "r0tzj86mni", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone3", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy12Copy", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "5edfjd3tfj", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "s9pfw79l03", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "8ck1fzh2s5", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "s9pfw79l03", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "k3qx0o9eht", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "75lz2xe3v7", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "5edfjd3tfj", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "kam2l0590i", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "51x494366a", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "k3qx0o9eht", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "fvrdjg8q7p", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "s9pfw79l03", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "5mqd2a3e6h", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "fvrdjg8q7p": 6, + "s9pfw79l03": 6 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section2Copy", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy12Copy1", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "u0pv59t7wz", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "b1oanp5zk5", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "8ck1fzh2s5", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "b1oanp5zk5", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "548eryonq6", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "zwakn6ryx9", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "u0pv59t7wz", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "a4psc5em16", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone4", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy12Copy2", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "5okinvkj36", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "5dzezt9oi2", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "8ck1fzh2s5", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "5dzezt9oi2", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "548eryonq6", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "l1zpotx1o1", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "5okinvkj36", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "7kg7b2g342", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone5", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy12Copy3", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "5kbt2ohbv4", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "exwxdvb70g", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "8ck1fzh2s5", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "exwxdvb70g", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "548eryonq6", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "5qqtfxsnb1", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "5kbt2ohbv4", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "qvucdr7f0h", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "51x494366a", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "548eryonq6", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 3, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "b1oanp5zk5", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "5dzezt9oi2", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "exwxdvb70g", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "cx5xl0n19f", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "b1oanp5zk5": 4, + "5dzezt9oi2": 4, + "exwxdvb70g": 4 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section2Copy1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy1", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy12Copy4", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "crmedzzczq", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "dsflpz7c8h", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "8ck1fzh2s5", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "dsflpz7c8h", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "gpzvsy2z30", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "hx0bvutg8z", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "crmedzzczq", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "6iu1vyqdyn", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone6", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy12Copy5", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "z3vbv9429r", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "9h2u9ksekn", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "8ck1fzh2s5", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "9h2u9ksekn", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "gpzvsy2z30", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "2czc3f278s", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "z3vbv9429r", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "hs8reh4t9u", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone7", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy12Copy6", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "nwwow7hxzg", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "7vxro7fu3g", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "8ck1fzh2s5", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "7vxro7fu3g", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "gpzvsy2z30", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "4wo4ffvtzi", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "nwwow7hxzg", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "e9i43d1rfz", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone8", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Heading1Copy12Copy7", + "displayName": "Heading", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_HEADING_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Header", + "key": "2usr0od2ut", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "kua17n1uho", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "2br0ufo2f2", + "tags": [ + "Suggested", + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "8ck1fzh2s5", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "2br0ufo2f2", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "gpzvsy2z30", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "v2o2adu52d", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "kua17n1uho", + "widgetType": "WDS_HEADING_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "2hxjh88n29", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "51x494366a", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "gpzvsy2z30", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 4, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "dsflpz7c8h", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "9h2u9ksekn", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "7vxro7fu3g", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "2br0ufo2f2", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "s3f00zm5e1", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "dsflpz7c8h": 3, + "9h2u9ksekn": 3, + "7vxro7fu3g": 3, + "2br0ufo2f2": 3 + } + } + ] + }, + "layoutOnLoadActions": [], + "layoutOnLoadActionErrors": [], + "id": "667d15269da472349cd2d6bc", + "userPermissions": [] +} \ No newline at end of file diff --git a/app/client/cypress/fixtures/anvilParagraphWidget.json b/app/client/cypress/fixtures/anvilParagraphWidget.json new file mode 100644 index 000000000000..4ca8c707db9e --- /dev/null +++ b/app/client/cypress/fixtures/anvilParagraphWidget.json @@ -0,0 +1,2525 @@ +{ + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 4896, + "snapColumns": 64, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0, + "bottomRow": 380, + "containerStyle": "none", + "snapRows": 124, + "parentRowSpace": 1, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 89, + "minHeight": 1292, + "layout": [ + { + "layoutId": "c522faae43", + "layoutType": "ALIGNED_LAYOUT_COLUMN", + "layout": [ + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "621756026n", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "gcozpu9xso", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "qsb365icl0", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "i0c61kpk46", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "6z58x1lhov", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "wggprnu9jy", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "2nh64s4rjf", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "ojpmxczefj", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + ], + "layoutStyle": { + "border": "none", + "height": "100%", + "padding": "spacing-4", + "gap": "spacing-4" + }, + "isDropTarget": true, + "isPermanent": true, + "childTemplate": { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [], + "layoutId": "", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + } + ], + "dynamicTriggerPathList": [], + "parentColumnSpace": 1, + "dynamicBindingPathList": [], + "leftColumn": 0, + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone1", + "flexGrow": 12, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "The important thing is not to stop questioning. Curiosity has its reason for existence. One cannot help but be in awe when one contemplates the mysteries of eternity, life, and the marvelous structure of reality. It is enough if one merely tries to comprehend a little of this mystery each day.", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "6hem8vqz73", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "ar8cq63kuw", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph3", + "lineClamp": "1", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "The important thing is not to stop questioning. Curiosity has its reason for existence. One cannot help but be in awe when one contemplates the mysteries of eternity, life, and the marvelous structure of reality. It is enough if one merely tries to comprehend a little of this mystery each day.", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "xevnc8rvn4", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "ar8cq63kuw", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph3Copy", + "lineClamp": "1", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "t56yvza3qa", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "ar8cq63kuw", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "subtitle", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph3CopyCopy", + "lineClamp": "1", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "ii204neu0x", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "ar8cq63kuw", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "title", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph3CopyCopy1", + "lineClamp": "1", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "q89p7hoo33", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "ar8cq63kuw", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "heading", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2Copy", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "shdz7dvtzh", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "ar8cq63kuw", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "center", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "cfb8jzthja", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "ar8cq63kuw", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy1", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "right", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "l9gebsj7u0", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "ar8cq63kuw", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy2", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "j0yac4svne", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "fontStyle": "bold", + "textColor": "neutral", + "version": 1, + "parentId": "ar8cq63kuw", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy3", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "d6n6hgvcbi", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "fontStyle": "italic", + "textColor": "neutral", + "version": 1, + "parentId": "ar8cq63kuw", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy4", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "1mge4jq3zp", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "fontStyle": "italic,bold", + "textColor": "neutral", + "version": 1, + "parentId": "ar8cq63kuw", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy5", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "1jzge5obrp", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "textColor": "neutral", + "version": 1, + "parentId": "ar8cq63kuw", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "3nvxa343qz", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "ar8cq63kuw", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "621756026n", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "fr8bb8pixh", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "6hem8vqz73", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "kihupv5eqn", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "xevnc8rvn4", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "3d5s12wwoi", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "t56yvza3qa", + "widgetType": "WDS_PARAGRAPH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "ii204neu0x", + "widgetType": "WDS_PARAGRAPH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "q89p7hoo33", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "8aheyfr33y", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "shdz7dvtzh", + "widgetType": "WDS_PARAGRAPH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "cfb8jzthja", + "widgetType": "WDS_PARAGRAPH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "l9gebsj7u0", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "uw4r09kvfm", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "j0yac4svne", + "widgetType": "WDS_PARAGRAPH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "d6n6hgvcbi", + "widgetType": "WDS_PARAGRAPH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "1mge4jq3zp", + "widgetType": "WDS_PARAGRAPH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "1jzge5obrp", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "3l3r0n31dz", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "009jzfahwk", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "621756026n", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 1, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "ar8cq63kuw", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "95xh92e249", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "ar8cq63kuw": 12 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section2", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy6", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "6rgeno4vl7", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "lh3ozhlyjd", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "3nvxa343qz", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "lh3ozhlyjd", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "qsb365icl0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "vxz9qt0s2r", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "6rgeno4vl7", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "07x8udgh47", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone4", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy7Copy", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "zd996qf87m", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "r59ic8kqm2", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "3nvxa343qz", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "r59ic8kqm2", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "qsb365icl0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "ijsii4a2xw", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "zd996qf87m", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "f989x7k9h7", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "009jzfahwk", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "qsb365icl0", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "lh3ozhlyjd", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "r59ic8kqm2", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "zslqxxx3vr", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "lh3ozhlyjd": 6, + "r59ic8kqm2": 6 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section3", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone4Copy", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy7CopyCopy", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "11y6kfvhcn", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "2yl20xjbb8", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "3nvxa343qz", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "2yl20xjbb8", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "6z58x1lhov", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "obipqfyik0", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "11y6kfvhcn", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "ci42qtgymm", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone4Copy1", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy7CopyCopy1", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "6oqw3j9k2i", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "ybznlaw7xm", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "3nvxa343qz", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "ybznlaw7xm", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "6z58x1lhov", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "azbaufdtg5", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "6oqw3j9k2i", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "rce4j9ag1u", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone4Copy2", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy7CopyCopy2", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "fd0rkrlj64", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "sffvigsefk", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "3nvxa343qz", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "sffvigsefk", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "6z58x1lhov", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "z4r055wte3", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "fd0rkrlj64", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "8jiejk3617", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "009jzfahwk", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "6z58x1lhov", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 3, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "2yl20xjbb8", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "ybznlaw7xm", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "sffvigsefk", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "zptv4bq455", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "2yl20xjbb8": 4, + "ybznlaw7xm": 4, + "sffvigsefk": 4 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section4", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone4Copy3", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy7CopyCopy3", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "4veguy7veq", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "c4adm9d41t", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "3nvxa343qz", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "c4adm9d41t", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "2nh64s4rjf", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "1qupz4wwtg", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "4veguy7veq", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "vjgdknai6u", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone4Copy4", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy7CopyCopy4", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "szt5g9hjrj", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "kgh7t7xuac", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "3nvxa343qz", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "kgh7t7xuac", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "2nh64s4rjf", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "x6o56yxwbd", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "szt5g9hjrj", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "pwi18o40qq", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone4Copy5", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy7CopyCopy5", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "a3k0ockgn6", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "a7kcxw55ho", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "3nvxa343qz", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "a7kcxw55ho", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "2nh64s4rjf", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "zcpq9fxbp0", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "a3k0ockgn6", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "vsdj8oken7", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone4Copy6", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Paragraph2CopyCopy7CopyCopy6", + "displayName": "Paragraph", + "searchTags": [ + "typography", + "paragraph", + "label" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_PARAGRAPH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "text": "Paragraph", + "key": "4889zzsxjw", + "isDeprecated": false, + "rightColumn": 64, + "textAlign": "left", + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "pk34r5e7au", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "textColor": "neutral", + "version": 1, + "parentId": "5ttmzxmklo", + "tags": [ + "Content" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "fontSize": "body", + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "3nvxa343qz", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "5ttmzxmklo", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "2nh64s4rjf", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "id388z6y0k", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "pk34r5e7au", + "widgetType": "WDS_PARAGRAPH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "lrvgfsv09f", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "009jzfahwk", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "2nh64s4rjf", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 4, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "c4adm9d41t", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "kgh7t7xuac", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "a7kcxw55ho", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "5ttmzxmklo", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "mmfs4g1j91", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "c4adm9d41t": 3, + "kgh7t7xuac": 3, + "a7kcxw55ho": 3, + "5ttmzxmklo": 3 + } + } + ] + }, + "layoutOnLoadActions": [], + "layoutOnLoadActionErrors": [], + "id": "667d16aa9da472349cd2d6c0", + "userPermissions": [] +} \ No newline at end of file diff --git a/app/client/cypress/fixtures/anvilRadioGroupWidget.json b/app/client/cypress/fixtures/anvilRadioGroupWidget.json new file mode 100644 index 000000000000..a1887f0accde --- /dev/null +++ b/app/client/cypress/fixtures/anvilRadioGroupWidget.json @@ -0,0 +1,2846 @@ +{ + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 4896, + "snapColumns": 64, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0, + "bottomRow": 380, + "containerStyle": "none", + "snapRows": 124, + "parentRowSpace": 1, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 89, + "minHeight": 1292, + "layout": [ + { + "layoutId": "w1uzh1www2", + "layoutType": "ALIGNED_LAYOUT_COLUMN", + "layout": [ + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "6cjx3vrmlr", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "bdzj4e2iay", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "djv3t3rf0r", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "xk1plonypl", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "zc3lsxvt8q", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "puaq8fuk82", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "iem3hko8nv", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "zdohqnjycx", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + ], + "layoutStyle": { + "border": "none", + "height": "100%", + "padding": "spacing-4", + "gap": "spacing-4" + }, + "isDropTarget": true, + "isPermanent": true, + "childTemplate": { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [], + "layoutId": "", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + } + ], + "dynamicTriggerPathList": [], + "parentColumnSpace": 1, + "dynamicBindingPathList": [], + "leftColumn": 0, + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone1", + "flexGrow": 12, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "guirmbwfzk", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup2", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "horizontal", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "fwecbzj257", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup3", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "hkzwucrof2", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup4", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "", + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": true, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "kq1lpmjwk4", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup4Copy", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelTooltip": "Tooltip", + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": true, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "az79jne2kz", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup4CopyCopy", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelTooltip": "Tooltip", + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium with but long label that can't fit at all and it will need a very big space to fill it and we can't afford that right now. But surely in future", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "g48m8iewfh", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup5", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "8jq2lqtnf7", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "label": "Size", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup6", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": true, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "wvj31gdsix", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup6Copy", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": true, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "ghejw9p91s", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "label": "Size", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1Copy", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "2u7l4yy3me", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1CopyCopy", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "qxr21udarr", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1CopyCopy1", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "p9ph4mba84", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1CopyCopy2", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "372ampmu4f", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "0loxlhnhb7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "q4mmtpnhi7", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "0loxlhnhb7", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "6cjx3vrmlr", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "kb23breox6", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "guirmbwfzk", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "fwecbzj257", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "mqgb5mwhqj", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "hkzwucrof2", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "43ljpytgz3", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "kq1lpmjwk4", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "az79jne2kz", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "g48m8iewfh", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "svh6o1nmp9", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "8jq2lqtnf7", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "wvj31gdsix", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "ghejw9p91s", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "52ggtbuue1", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "2u7l4yy3me", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "qxr21udarr", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "p9ph4mba84", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "372ampmu4f", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "vvhrapeyzw", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "76kdpy4p17", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "6cjx3vrmlr", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 1, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "0loxlhnhb7", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "o893r5a4zi", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "0loxlhnhb7": 12 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section2", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1CopyCopy3", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "ajmr3kyp22", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "kgte2wtlux", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "q4mmtpnhi7", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "kgte2wtlux", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "djv3t3rf0r", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "pfmoono2fn", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "ajmr3kyp22", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "vjhg0me4h8", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1CopyCopy3Copy", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "7w0c4qxi0p", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "xiwwz6d8iq", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "q4mmtpnhi7", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "xiwwz6d8iq", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "djv3t3rf0r", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "uhfha5z2xj", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "7w0c4qxi0p", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "pon2yhus38", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "76kdpy4p17", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "djv3t3rf0r", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "kgte2wtlux", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "xiwwz6d8iq", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "3cm51cep2g", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "kgte2wtlux": 6, + "xiwwz6d8iq": 6 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section3", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy1", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1CopyCopy3Copy1", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "w090rtsgbp", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "skzypqyco7", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "q4mmtpnhi7", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "skzypqyco7", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "zc3lsxvt8q", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "wdkmh6y0gi", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "w090rtsgbp", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "fa81s3dord", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy2", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1CopyCopy3Copy2", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "6rqomxmdac", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "e3a7k46jus", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "q4mmtpnhi7", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "e3a7k46jus", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "zc3lsxvt8q", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "eqyf7ls18b", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "6rqomxmdac", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "8fngfu6m6m", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy3", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1CopyCopy3Copy3", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "1q3wbaeivx", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "xdgxxt2ghi", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "q4mmtpnhi7", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "xdgxxt2ghi", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "zc3lsxvt8q", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "qxqiycwjn8", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "1q3wbaeivx", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "7g5m03t1py", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "76kdpy4p17", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "zc3lsxvt8q", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 3, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "skzypqyco7", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "e3a7k46jus", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "xdgxxt2ghi", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "3sctg2izng", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "skzypqyco7": 4, + "e3a7k46jus": 4, + "xdgxxt2ghi": 4 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section4", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy4", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1CopyCopy3Copy4", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "n7yb63dz70", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "4yip4cahbe", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "q4mmtpnhi7", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "4yip4cahbe", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "iem3hko8nv", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "7bbt041sow", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "n7yb63dz70", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "o2h2b1yeol", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy5", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1CopyCopy3Copy5", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "gbvjxkfa5v", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "k828j0b4dy", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "q4mmtpnhi7", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "k828j0b4dy", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "iem3hko8nv", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "j4qnam6h7v", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "gbvjxkfa5v", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "aqk7130pdu", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy6", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1CopyCopy3Copy6", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "ex9xmhyc5o", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "34hmalhmxy", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "q4mmtpnhi7", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "34hmalhmxy", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "iem3hko8nv", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "oosk4svfn4", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "ex9xmhyc5o", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "vi1a7j3e2f", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy7", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "RadioGroup1CopyCopy3Copy7", + "displayName": "Radio Group", + "searchTags": [ + "choice" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_RADIO_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "defaultOptionValue": "L", + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "options": [ + { + "label": "Small", + "value": "S" + }, + { + "label": "Medium", + "value": "M" + }, + { + "label": "Large", + "value": "L" + } + ], + "isDisabled": false, + "key": "nndjszrrjv", + "isRequired": false, + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "1l77kxp9gk", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Size", + "version": 1, + "parentId": "botuulur73", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "isInline": true, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "q4mmtpnhi7", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "botuulur73", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "iem3hko8nv", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "cyum302bia", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "1l77kxp9gk", + "widgetType": "WDS_RADIO_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "nihs6glabs", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "76kdpy4p17", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "iem3hko8nv", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 4, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "4yip4cahbe", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "k828j0b4dy", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "34hmalhmxy", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "botuulur73", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "p7eukv7487", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "4yip4cahbe": 3, + "k828j0b4dy": 3, + "34hmalhmxy": 3, + "botuulur73": 3 + } + } + ] + } +} \ No newline at end of file diff --git a/app/client/cypress/fixtures/anvilStatsWidget.json b/app/client/cypress/fixtures/anvilStatsWidget.json new file mode 100644 index 000000000000..5314faa3c3d8 --- /dev/null +++ b/app/client/cypress/fixtures/anvilStatsWidget.json @@ -0,0 +1,3069 @@ +{ + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 4896, + "snapColumns": 64, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0, + "bottomRow": 380, + "containerStyle": "none", + "snapRows": 124, + "parentRowSpace": 1, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 89, + "minHeight": 1292, + "layout": [ + { + "layoutId": "jjj2374hc0", + "layoutType": "ALIGNED_LAYOUT_COLUMN", + "layout": [ + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "3xw9fgt5c4", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "07dhan9aca", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "youo7ffpyy", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "gufcnkwr8e", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "elzayk8etb", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "aag56c7c49", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "40rb1l0t2y", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "dgumvjdud8", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + ], + "layoutStyle": { + "border": "none", + "height": "100%", + "padding": "spacing-4", + "gap": "spacing-4" + }, + "isDropTarget": true, + "isPermanent": true, + "childTemplate": { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [], + "layoutId": "", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + } + ], + "dynamicTriggerPathList": [], + "parentColumnSpace": 1, + "dynamicBindingPathList": [], + "leftColumn": 0, + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone1", + "flexGrow": 12, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "a5abkgb8fi", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy2", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "vok1cc3v2i", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy1", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "9y0qfv5fs5", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy4", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "uxwarxkrl1", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "yjac0otvf2", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy10Copy", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "jqzqcmh3sq", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy9", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "5t83uokwct", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy10CopyCopy", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "vvdoac7b9z", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy10CopyCopyCopy", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "51a4yj1tjo", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8Copy", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "wuc1m4ltf7", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "iconAlign": "end" + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8CopyCopy", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "123", + "widgetId": "ff54pxvjjr", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "iconAlign": "end" + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8Copy1", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "accent", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "ma1t5aotg4", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8Copy1Copy", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "positive", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "bg29nj0b2b", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8Copy1Copy1", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "negative", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "6e6uzp8x4x", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8Copy1Copy2", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "warning", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "y8bckkeio1", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8Copy2", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "accent", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "3ysj8r8cym", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8Copy2Copy", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "neutral", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "v6hirt5p53", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8Copy2Copy1", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "negative", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "42yml3xivg", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8Copy2Copy2", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "warning", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "2s5fc0o7t0", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8Copy3", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "gprvpt0kcv", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy10", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "5uv78gxjkf", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1Copy8Copy4", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "tndb3l3uso", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "label": "Active Users", + "version": 1, + "parentId": "ms8gbtfcke", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "l1jaejmi68", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "ms8gbtfcke", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "3xw9fgt5c4", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "tmqkornps5", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "yjac0otvf2", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "5uv78gxjkf", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "jqzqcmh3sq", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "vvdoac7b9z", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "ajzk1saxje", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "5t83uokwct", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "51a4yj1tjo", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "gprvpt0kcv", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "tndb3l3uso", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "cb23yx295v", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "wuc1m4ltf7", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "ff54pxvjjr", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "jnzdtl7sl1", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "ma1t5aotg4", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "bg29nj0b2b", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "6e6uzp8x4x", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "y8bckkeio1", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "82b10f1qmt", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "3ysj8r8cym", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "v6hirt5p53", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "42yml3xivg", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "2s5fc0o7t0", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "q9k6dau0pk", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "a5abkgb8fi", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "njygkcaqt5", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "vok1cc3v2i", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "9y0qfv5fs5", + "widgetType": "WDS_STATS_WIDGET" + }, + { + "alignment": "start", + "widgetId": "uxwarxkrl1", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "06p0v4k3bi", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "n99fzhhr4o", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "3xw9fgt5c4", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 1, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "ms8gbtfcke", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "mqsjoguqt4", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "ms8gbtfcke": 12 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section2", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget2", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "2yjxfiyq66", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "9qp7n2qzuz", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "l1jaejmi68", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "9qp7n2qzuz", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "youo7ffpyy", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "9g3g058t7y", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "2yjxfiyq66", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "016qep256y", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget2Copy", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "k2v8ysclqw", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "fxtwqsiy4g", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "l1jaejmi68", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "fxtwqsiy4g", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "youo7ffpyy", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "yuf26yg7wc", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "k2v8ysclqw", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "cxbpa9zlky", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "n99fzhhr4o", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "youo7ffpyy", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "9qp7n2qzuz", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "fxtwqsiy4g", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "abqwcbs4tf", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "9qp7n2qzuz": 6, + "fxtwqsiy4g": 6 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section3", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy1", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget2Copy1", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "ysn4ksmrzn", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "wbv9ma0eht", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "l1jaejmi68", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "wbv9ma0eht", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "elzayk8etb", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "fqew5hra0h", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "ysn4ksmrzn", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "lrbwfye4x8", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy2", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget2Copy2", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "rcg7j2h5cd", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "whwld6tf2e", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "l1jaejmi68", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "whwld6tf2e", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "elzayk8etb", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "uemhxtslgt", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "rcg7j2h5cd", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "201dsb61qz", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy3", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget2Copy3", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "tzzhriq0vh", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ev1r7t1gj2", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "l1jaejmi68", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "ev1r7t1gj2", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "elzayk8etb", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "3g5wj0dcqx", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "tzzhriq0vh", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "6k71x7kcb2", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "n99fzhhr4o", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "elzayk8etb", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 3, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "wbv9ma0eht", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "whwld6tf2e", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "ev1r7t1gj2", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "u24ren24oy", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "wbv9ma0eht": 4, + "whwld6tf2e": 4, + "ev1r7t1gj2": 4 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section4", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy4", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget2Copy4", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "pha85ubdoo", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "sj7k3qu8db", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "l1jaejmi68", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "sj7k3qu8db", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "40rb1l0t2y", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "dvvsfjg2dg", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "pha85ubdoo", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "928zjurfjz", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy5", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget2Copy5", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "4m8ckft93l", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "aoa7dyyejc", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "l1jaejmi68", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "aoa7dyyejc", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "40rb1l0t2y", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "bkpa4bh4mw", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "4m8ckft93l", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "75pgsubctn", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy6", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget2Copy6", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "xmwhj95g1i", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "y267g5mn7o", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "l1jaejmi68", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "y267g5mn7o", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "40rb1l0t2y", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "i6vj7cgjwt", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "xmwhj95g1i", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "3gb3urfvhb", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy7", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget2Copy7", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": false, + "key": "yt53hj1sju", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "q4byyc85l3", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "rv3dnnmvq2", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "l1jaejmi68", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "rv3dnnmvq2", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "40rb1l0t2y", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "d7hq5ja1xn", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "q4byyc85l3", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "bcpdfhfzg8", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "n99fzhhr4o", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "40rb1l0t2y", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 4, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "sj7k3qu8db", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "aoa7dyyejc", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "y267g5mn7o", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "rv3dnnmvq2", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "virevop6p0", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "sj7k3qu8db": 3, + "aoa7dyyejc": 3, + "y267g5mn7o": 3, + "rv3dnnmvq2": 3 + } + } + ] + } +} \ No newline at end of file diff --git a/app/client/cypress/fixtures/anvilSwitchGroupWidget.json b/app/client/cypress/fixtures/anvilSwitchGroupWidget.json new file mode 100644 index 000000000000..b74665d47fcc --- /dev/null +++ b/app/client/cypress/fixtures/anvilSwitchGroupWidget.json @@ -0,0 +1,2755 @@ +{ + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 4896, + "snapColumns": 64, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0, + "bottomRow": 380, + "containerStyle": "none", + "snapRows": 124, + "parentRowSpace": 1, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 89, + "minHeight": 1292, + "layout": [ + { + "layoutId": "gizko76p39", + "layoutType": "ALIGNED_LAYOUT_COLUMN", + "layout": [ + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "bm88fraicp", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "nj7p281sir", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "uwipfpvwhg", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "ote3v12zyb", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "5s30b1w5q3", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "5j88hvzuqu", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "1uem09v4wo", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "94twpwrjmi", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + ], + "layoutStyle": { + "border": "none", + "height": "100%", + "padding": "spacing-4", + "gap": "spacing-4" + }, + "isDropTarget": true, + "isPermanent": true, + "childTemplate": { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [], + "layoutId": "", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + } + ], + "dynamicTriggerPathList": [], + "parentColumnSpace": 1, + "dynamicBindingPathList": [], + "leftColumn": 0, + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone1", + "flexGrow": 12, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup2", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "horizontal", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "xbql7evlb8", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "452b0a5ud8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "4omt2p2p8v", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. ", + "version": 1, + "parentId": "452b0a5ud8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy3", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": true, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "16cg4sbu5n", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "label": "Label", + "version": 1, + "parentId": "452b0a5ud8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy4", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "fk1edjig57", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "label": "Label", + "version": 1, + "parentId": "452b0a5ud8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy2", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": true, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "cqjxu7aqj4", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "452b0a5ud8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy6", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "horizontal", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "prx3k69mo1", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "452b0a5ud8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "b79afhlnoh", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "452b0a5ud8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy1", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "labelTooltip": "Tooltip", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green with but long label that can't fit at all and it will need a very big space to fill it and we can't afford that right now. But surely in future", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "r9teci78di", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "452b0a5ud8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy7", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "02j9yazr8j", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "452b0a5ud8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy8", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "tq79mki9z0", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "452b0a5ud8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy9", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "b9vmgtjr20", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "452b0a5ud8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy10", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "b0gyjxfdxi", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "452b0a5ud8", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "oy3wdniu8v", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "452b0a5ud8", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "bm88fraicp", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "ihedti272c", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "b79afhlnoh", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "8wp0xluce2", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "xbql7evlb8", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "prx3k69mo1", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "3y0hzg3fpv", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "4omt2p2p8v", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "r9teci78di", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "4b3wi0z1tq", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "fk1edjig57", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "cqjxu7aqj4", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "16cg4sbu5n", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "w6qj8dpa02", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "02j9yazr8j", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "tq79mki9z0", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "b9vmgtjr20", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + }, + { + "alignment": "start", + "widgetId": "b0gyjxfdxi", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "gpjjm679v4", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "oqabbgtddq", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "bm88fraicp", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 1, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "452b0a5ud8", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "o9yesjnujm", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "452b0a5ud8": 12 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section2", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy11", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "nk3b6k21me", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "jn70o9gwds", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "oy3wdniu8v", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "jn70o9gwds", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "uwipfpvwhg", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "6t34lulwkv", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "nk3b6k21me", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "pwxx95t0bx", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy11Copy", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "8ap3toj665", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "v7cuo41how", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "oy3wdniu8v", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "v7cuo41how", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "uwipfpvwhg", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "czkn3b40km", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "8ap3toj665", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "vimwyojdln", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "oqabbgtddq", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "uwipfpvwhg", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "jn70o9gwds", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "v7cuo41how", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "9pvjcovbue", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "jn70o9gwds": 6, + "v7cuo41how": 6 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section3", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy1", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy11Copy1", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "h1ttebwlz3", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "nxj6yp6qlj", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "oy3wdniu8v", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "nxj6yp6qlj", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "5s30b1w5q3", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "w08sacc8dp", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "h1ttebwlz3", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "8ji0ixdr2n", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy2", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy11Copy2", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "p8pvuy9z4q", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "e7chi6gzaf", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "oy3wdniu8v", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "e7chi6gzaf", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "5s30b1w5q3", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "csyey9wrls", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "p8pvuy9z4q", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "apd3l8udfr", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy3", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy11Copy3", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "z7185frwf1", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "ztgg1cwvb1", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "oy3wdniu8v", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "ztgg1cwvb1", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "5s30b1w5q3", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "ylq2vtqwi3", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "z7185frwf1", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "hwbpf1at1r", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "oqabbgtddq", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "5s30b1w5q3", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 3, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "nxj6yp6qlj", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "e7chi6gzaf", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "ztgg1cwvb1", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "uebjhac66c", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "nxj6yp6qlj": 4, + "e7chi6gzaf": 4, + "ztgg1cwvb1": 4 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section4", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy4", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy11Copy4", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "hbpoe0jl9p", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "1v1rc8sw3x", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "oy3wdniu8v", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "1v1rc8sw3x", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "1uem09v4wo", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "1c7nyhg0b0", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "hbpoe0jl9p", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "qw5n398o1m", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy5", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy11Copy5", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "283fa3u00m", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "83njl8w3ol", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "oy3wdniu8v", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "83njl8w3ol", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "1uem09v4wo", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "1c7lf3sahd", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "283fa3u00m", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "zz55b7aiy8", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy6", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy11Copy6", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "zz0cr0mprw", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "iwvly67ucg", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "oy3wdniu8v", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "iwvly67ucg", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "1uem09v4wo", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "n620hprcxi", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "zz0cr0mprw", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "iiqhh3u11s", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy7", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "SwitchGroup1Copy11Copy7", + "displayName": "Switch Group", + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_GROUP_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "options": [ + { + "label": "Blue", + "value": "BLUE" + }, + { + "label": "Green", + "value": "GREEN" + }, + { + "label": "Red", + "value": "RED" + } + ], + "isDisabled": false, + "key": "c7lx0xsd9q", + "orientation": "vertical", + "isDeprecated": false, + "rightColumn": 64, + "defaultSelectedValues": [ + "BLUE", + "RED" + ], + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "gxvs9zpjz1", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "version": 1, + "parentId": "qfjazd71el", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "oy3wdniu8v", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "qfjazd71el", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "1uem09v4wo", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "8f2scg3rbt", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "gxvs9zpjz1", + "widgetType": "WDS_SWITCH_GROUP_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "kvx6gpzc5f", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "oqabbgtddq", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "1uem09v4wo", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 4, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "1v1rc8sw3x", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "83njl8w3ol", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "iwvly67ucg", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "qfjazd71el", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "gw07tsvo9d", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "1v1rc8sw3x": 3, + "83njl8w3ol": 3, + "iwvly67ucg": 3, + "qfjazd71el": 3 + } + } + ] + } +} \ No newline at end of file diff --git a/app/client/cypress/fixtures/anvilSwitchWidget.json b/app/client/cypress/fixtures/anvilSwitchWidget.json new file mode 100644 index 000000000000..b71e4a303ac7 --- /dev/null +++ b/app/client/cypress/fixtures/anvilSwitchWidget.json @@ -0,0 +1,2783 @@ +{ + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 4896, + "snapColumns": 64, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0, + "bottomRow": 380, + "containerStyle": "none", + "snapRows": 124, + "parentRowSpace": 1, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 89, + "minHeight": 1292, + "layout": [ + { + "layoutId": "lgzn0uodm1", + "layoutType": "ALIGNED_LAYOUT_COLUMN", + "layout": [ + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "rknrktein9", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "i3tk9jwbza", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "09nss42ws7", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "9p0uz80gmu", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "tjijzml7u1", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "tx84zsz97b", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "autojzw60p", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "zqlwwgv5wo", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + ], + "layoutStyle": { + "border": "none", + "height": "100%", + "padding": "spacing-4", + "gap": "spacing-4" + }, + "isDropTarget": true, + "isPermanent": true, + "childTemplate": { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [], + "layoutId": "", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + } + ], + "dynamicTriggerPathList": [], + "parentColumnSpace": 1, + "dynamicBindingPathList": [], + "leftColumn": 0, + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone1", + "flexGrow": 12, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "diuo2u3sdw", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": false, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1CopyCopy", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "t3kje3ysey", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": false, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1CopyCopyCopy", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "npu5el497b", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book", + "defaultSwitchState": false, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy1", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "8eo6finlav", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy1Copy", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": true, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "rrka0cwkjp", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy1Copy1", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": true, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "8b325g99w8", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": false, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy2Copy", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "r3zw697c1q", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy2", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "end", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "x8ifqrcrkr", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy5", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "mvrifip5m8", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy7", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "t2ysaz01fo", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy8", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "9mv6wcg6yx", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy9", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "dwh9klrqmd", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy10", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "c951m95mmv", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy11", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "0o5qjtqm6p", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy12", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "us1k85awkg", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy7Copy", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "uh3rvqeufj", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy7Copy1", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "xhntjtex7i", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + }, + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy14", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "ofvmji95kl", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "leexrfs5n3", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "2mmq8pdcwu", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "leexrfs5n3", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "rknrktein9", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "aiqbw5bzk3", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "ofvmji95kl", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "fx2x0db75k", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "diuo2u3sdw", + "widgetType": "WDS_SWITCH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "t3kje3ysey", + "widgetType": "WDS_SWITCH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "npu5el497b", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "okut71x42t", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "8eo6finlav", + "widgetType": "WDS_SWITCH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "rrka0cwkjp", + "widgetType": "WDS_SWITCH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "8b325g99w8", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "od6ei2tpec", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "r3zw697c1q", + "widgetType": "WDS_SWITCH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "x8ifqrcrkr", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "uw1gkvw0su", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "uh3rvqeufj", + "widgetType": "WDS_SWITCH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "xhntjtex7i", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "jhlp2neavz", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "mvrifip5m8", + "widgetType": "WDS_SWITCH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "t2ysaz01fo", + "widgetType": "WDS_SWITCH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "9mv6wcg6yx", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + }, + { + "insertChild": true, + "layoutId": "nqmeofdub3", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "dwh9klrqmd", + "widgetType": "WDS_SWITCH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "c951m95mmv", + "widgetType": "WDS_SWITCH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "0o5qjtqm6p", + "widgetType": "WDS_SWITCH_WIDGET" + }, + { + "alignment": "start", + "widgetId": "us1k85awkg", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "a666k9z40f", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "rtjfnota6o", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "rknrktein9", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 1, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "leexrfs5n3", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "euowlxqn6d", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "leexrfs5n3": 12 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section2", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy13", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "nd1hd766lh", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "n19s98bol6", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "2mmq8pdcwu", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "n19s98bol6", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "09nss42ws7", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "wfzzq9ugr0", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "nd1hd766lh", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "i3qnybff0r", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy13Copy", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "3wpbc1xq7k", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "q508nkw2jx", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "2mmq8pdcwu", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "q508nkw2jx", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "09nss42ws7", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "rf9qtp222j", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "3wpbc1xq7k", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "b2wolgakkn", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "rtjfnota6o", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "09nss42ws7", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "n19s98bol6", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "q508nkw2jx", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "xv9virdoan", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "n19s98bol6": 6, + "q508nkw2jx": 6 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section3", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy1", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy13Copy1", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "wxzm34bcrj", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "4v92cbyz34", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "2mmq8pdcwu", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "4v92cbyz34", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "tjijzml7u1", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "7wkq2pqa6i", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "wxzm34bcrj", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "qwk4qm41sl", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy2", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy13Copy2", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "acbzwob2vi", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "ov1k2l62f5", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "2mmq8pdcwu", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "ov1k2l62f5", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "tjijzml7u1", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "6tee5g9cqa", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "acbzwob2vi", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "wwly1ey51h", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy3", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy13Copy3", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "xhy4d9jo9t", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "7yo15l9bj0", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "2mmq8pdcwu", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "7yo15l9bj0", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "tjijzml7u1", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "n07kw7oopx", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "xhy4d9jo9t", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "eynrcik1xh", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "rtjfnota6o", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "tjijzml7u1", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 3, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "4v92cbyz34", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "ov1k2l62f5", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "7yo15l9bj0", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "83o4qwc44v", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "4v92cbyz34": 4, + "ov1k2l62f5": 4, + "7yo15l9bj0": 4 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section4", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy4", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy13Copy4", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "hdeg2mhqw3", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "q2r1qsx1up", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "2mmq8pdcwu", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "q2r1qsx1up", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "autojzw60p", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "3us9rw84gq", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "hdeg2mhqw3", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "76phew220b", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy5", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy13Copy5", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "gfiw64jvqb", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "109g5fcqtb", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "2mmq8pdcwu", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "109g5fcqtb", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "autojzw60p", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "oyixl6gjoj", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "gfiw64jvqb", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "0bgnh3q2iv", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy6", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy13Copy6", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "bnakylghoo", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "ja7skxbz57", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "2mmq8pdcwu", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "ja7skxbz57", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "autojzw60p", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "v4dp4gwubj", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "bnakylghoo", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "0k46l9pn8b", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy7", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Switch1Copy13Copy7", + "displayName": "Switch", + "searchTags": [ + "boolean" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "WDS_SWITCH_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "labelPosition": "start", + "isDisabled": false, + "key": "p91243oe65", + "isDeprecated": false, + "rightColumn": 64, + "dynamicHeight": "AUTO_HEIGHT", + "widgetId": "kwe9ghj6mq", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Label", + "defaultSwitchState": true, + "version": 1, + "parentId": "pxczuzucmh", + "tags": [ + "Toggles" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "maxDynamicHeight": 9000, + "minDynamicHeight": 4 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "2mmq8pdcwu", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "pxczuzucmh", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "autojzw60p", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "fwgm23hrm8", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "kwe9ghj6mq", + "widgetType": "WDS_SWITCH_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "eumhrzwpj7", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "rtjfnota6o", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "autojzw60p", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 4, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "q2r1qsx1up", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "109g5fcqtb", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "ja7skxbz57", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "pxczuzucmh", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "9ysol23e0n", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "q2r1qsx1up": 3, + "109g5fcqtb": 3, + "ja7skxbz57": 3, + "pxczuzucmh": 3 + } + } + ] + }, + "layoutOnLoadActions": [], + "layoutOnLoadActionErrors": [], + "id": "667c051c9da472349cd2d640", + "userPermissions": [] +} \ No newline at end of file diff --git a/app/client/cypress/fixtures/anvilTableWidget.json b/app/client/cypress/fixtures/anvilTableWidget.json new file mode 100644 index 000000000000..868c54245af1 --- /dev/null +++ b/app/client/cypress/fixtures/anvilTableWidget.json @@ -0,0 +1,6240 @@ +{ + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 4896, + "snapColumns": 64, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0, + "bottomRow": 380, + "containerStyle": "none", + "snapRows": 124, + "parentRowSpace": 1, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 89, + "minHeight": 1292, + "layout": [ + { + "layoutId": "7s35m0k7qs", + "layoutType": "ALIGNED_LAYOUT_COLUMN", + "layout": [ + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "tu71kxqc59", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "hfk34fbyq9", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "uecezzozwu", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "ktzd1ea33u", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "am2zkpv94i", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "m18z8xhpv4", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "b839m7j5w5", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "rgeevjx7k4", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + ], + "layoutStyle": { + "border": "none", + "height": "100%", + "padding": "spacing-4", + "gap": "spacing-4" + }, + "isDropTarget": true, + "isPermanent": true, + "childTemplate": { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [], + "layoutId": "", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + } + ], + "dynamicTriggerPathList": [], + "parentColumnSpace": 1, + "dynamicBindingPathList": [], + "leftColumn": 0, + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone1", + "flexGrow": 12, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "isVisibleDownload": true, + "topRow": 0, + "isSortable": true, + "pageSize": "1", + "type": "WDS_TABLE_WIDGET", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [], + "needsHeightForContent": true, + "leftColumn": 0, + "delimiter": ",", + "defaultSelectedRowIndex": 0, + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisibleFilters": true, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2, + "totalRecordsCount": 0, + "tags": [ + "Suggested", + "Display" + ], + "isLoading": false, + "columnUpdatedAt": 1719985967344, + "defaultSelectedRowIndices": [ + 0 + ], + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Table1", + "defaultPageSize": 0, + "columnOrder": [ + "Name", + "Company", + "Title", + "Phone_number", + "Email", + "Registration_date" + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + } + ], + "buttonColor": "accent", + "displayName": "Table", + "bottomRow": 10, + "columnWidthMap": {}, + "parentRowSpace": 10, + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "primaryColumns": { + "Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0, + "width": 150, + "originalId": "Name", + "id": "Name", + "alias": "Name", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Company": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1, + "width": 150, + "originalId": "Company", + "id": "Company", + "alias": "Company", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Company", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2, + "width": 150, + "originalId": "Title", + "id": "Title", + "alias": "Title", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Title", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Phone_number": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3, + "width": 150, + "originalId": "Phone number", + "id": "Phone_number", + "alias": "Phone number", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone number", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4, + "width": 150, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Registration_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5, + "width": 150, + "originalId": "Registration date", + "id": "Registration_date", + "alias": "Registration date", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "date", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Registration date", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + } + }, + "key": "o2lva12nb7", + "canFreezeColumn": true, + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "ypkegwpwwq", + "tableData": [ + { + "Name": "John Doe", + "Company": "TechCorp", + "Title": "Software Engineer", + "Phone number": "(555) 123-4567", + "Email": "john.doe@techcorp.com", + "Registration date": "2023-01-15" + }, + { + "Name": "Jane Smith", + "Company": "Innovate Ltd", + "Title": "Project Manager", + "Phone number": "(555) 234-5678", + "Email": "jane.smith@innovatelt.com", + "Registration date": "2023-02-20" + }, + { + "Name": "Alice Johnson", + "Company": "Web Solutions", + "Title": "UX Designer", + "Phone number": "(555) 345-6789", + "Email": "alice.johnson@websolutions.com", + "Registration date": "2023-03-10" + }, + { + "Name": "Bob Brown", + "Company": "BuildIt", + "Title": "Construction Manager", + "Phone number": "(555) 456-7890", + "Email": "bob.brown@buildit.com", + "Registration date": "2023-04-05" + }, + { + "Name": "Charlie Davis", + "Company": "FinTech Inc", + "Title": "Financial Analyst", + "Phone number": "(555) 567-8901", + "Email": "charlie.davis@fintechinc.com", + "Registration date": "2023-05-12" + }, + { + "Name": "Dana Lee", + "Company": "HealthFirst", + "Title": "Nurse Practitioner", + "Phone number": "(555) 678-9012", + "Email": "dana.lee@healthfirst.com", + "Registration date": "2023-06-01" + }, + { + "Name": "Evan Martinez", + "Company": "AutoPro", + "Title": "Mechanical Engineer", + "Phone number": "(555) 789-0123", + "Email": "evan.martinez@autopro.com", + "Registration date": "2023-07-19" + }, + { + "Name": "Fiona Green", + "Company": "EduFuture", + "Title": "Curriculum Developer", + "Phone number": "(555) 890-1234", + "Email": "fiona.green@edufuture.com", + "Registration date": "2023-08-23" + }, + { + "Name": "George Harris", + "Company": "MarketMasters", + "Title": "Marketing Director", + "Phone number": "(555) 901-2345", + "Email": "george.harris@marketmasters.com", + "Registration date": "2023-09-07" + }, + { + "Name": "Hannah Wright", + "Company": "LegalEagle", + "Title": "Attorney", + "Phone number": "(555) 012-3456", + "Email": "hannah.wright@legaleagle.com", + "Registration date": "2023-10-15" + }, + { + "Name": "Ian Walker", + "Company": "HomeGoods", + "Title": "Retail Manager", + "Phone number": "(555) 123-4567", + "Email": "ian.walker@homegoods.com", + "Registration date": "2023-11-22" + }, + { + "Name": "Julia King", + "Company": "TravelWise", + "Title": "Travel Agent", + "Phone number": "(555) 234-5678", + "Email": "julia.king@travelwise.com", + "Registration date": "2023-12-30" + }, + { + "Name": "Kevin Scott", + "Company": "CleanEnergy", + "Title": "Environmental Scientist", + "Phone number": "(555) 345-6789", + "Email": "kevin.scott@cleanenergy.com", + "Registration date": "2024-01-08" + }, + { + "Name": "Laura Baker", + "Company": "MediaMinds", + "Title": "Content Strategist", + "Phone number": "(555) 456-7890", + "Email": "laura.baker@mediaminds.com", + "Registration date": "2024-02-18" + }, + { + "Name": "Michael Young", + "Company": "CyberSecure", + "Title": "Cybersecurity Specialist", + "Phone number": "(555) 567-8901", + "Email": "michael.young@cybersecure.com", + "Registration date": "2024-03-29" + }, + { + "Name": "Nina Patel", + "Company": "AgriTech", + "Title": "Agricultural Engineer", + "Phone number": "(555) 678-9012", + "Email": "nina.patel@agritech.com", + "Registration date": "2024-04-10" + } + ], + "label": "Data", + "searchKey": "", + "parentId": "ozrdc7wrwm", + "buttonLabel": "Action", + "renderMode": "CANVAS", + "mobileTopRow": 0, + "horizontalAlignment": "start", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "isVisiblePagination": true, + "buttonVariant": "filled", + "verticalAlignment": "center" + }, + { + "isVisibleDownload": true, + "topRow": 0, + "isSortable": false, + "pageSize": "1", + "type": "WDS_TABLE_WIDGET", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [], + "needsHeightForContent": true, + "leftColumn": 0, + "delimiter": ",", + "defaultSelectedRowIndex": 0, + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisibleFilters": true, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2, + "totalRecordsCount": 0, + "tags": [ + "Suggested", + "Display" + ], + "isLoading": false, + "columnUpdatedAt": 1719985967344, + "defaultSelectedRowIndices": [ + 0 + ], + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Table1Copy", + "defaultPageSize": 0, + "columnOrder": [ + "Name", + "Company", + "Title", + "Phone_number", + "Email", + "Registration_date" + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + } + ], + "buttonColor": "accent", + "displayName": "Table", + "bottomRow": 10, + "columnWidthMap": {}, + "parentRowSpace": 10, + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "primaryColumns": { + "Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0, + "width": 150, + "originalId": "Name", + "id": "Name", + "alias": "Name", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Company": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1, + "width": 150, + "originalId": "Company", + "id": "Company", + "alias": "Company", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Company", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2, + "width": 150, + "originalId": "Title", + "id": "Title", + "alias": "Title", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Title", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Phone_number": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3, + "width": 150, + "originalId": "Phone number", + "id": "Phone_number", + "alias": "Phone number", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone number", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4, + "width": 150, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Registration_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5, + "width": 150, + "originalId": "Registration date", + "id": "Registration_date", + "alias": "Registration date", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "date", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Registration date", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + } + }, + "key": "o2lva12nb7", + "canFreezeColumn": true, + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "0t5ujl8mr1", + "tableData": [ + { + "Name": "John Doe", + "Company": "TechCorp", + "Title": "Software Engineer", + "Phone number": "(555) 123-4567", + "Email": "john.doe@techcorp.com", + "Registration date": "2023-01-15" + }, + { + "Name": "Jane Smith", + "Company": "Innovate Ltd", + "Title": "Project Manager", + "Phone number": "(555) 234-5678", + "Email": "jane.smith@innovatelt.com", + "Registration date": "2023-02-20" + }, + { + "Name": "Alice Johnson", + "Company": "Web Solutions", + "Title": "UX Designer", + "Phone number": "(555) 345-6789", + "Email": "alice.johnson@websolutions.com", + "Registration date": "2023-03-10" + }, + { + "Name": "Bob Brown", + "Company": "BuildIt", + "Title": "Construction Manager", + "Phone number": "(555) 456-7890", + "Email": "bob.brown@buildit.com", + "Registration date": "2023-04-05" + }, + { + "Name": "Charlie Davis", + "Company": "FinTech Inc", + "Title": "Financial Analyst", + "Phone number": "(555) 567-8901", + "Email": "charlie.davis@fintechinc.com", + "Registration date": "2023-05-12" + }, + { + "Name": "Dana Lee", + "Company": "HealthFirst", + "Title": "Nurse Practitioner", + "Phone number": "(555) 678-9012", + "Email": "dana.lee@healthfirst.com", + "Registration date": "2023-06-01" + }, + { + "Name": "Evan Martinez", + "Company": "AutoPro", + "Title": "Mechanical Engineer", + "Phone number": "(555) 789-0123", + "Email": "evan.martinez@autopro.com", + "Registration date": "2023-07-19" + }, + { + "Name": "Fiona Green", + "Company": "EduFuture", + "Title": "Curriculum Developer", + "Phone number": "(555) 890-1234", + "Email": "fiona.green@edufuture.com", + "Registration date": "2023-08-23" + }, + { + "Name": "George Harris", + "Company": "MarketMasters", + "Title": "Marketing Director", + "Phone number": "(555) 901-2345", + "Email": "george.harris@marketmasters.com", + "Registration date": "2023-09-07" + }, + { + "Name": "Hannah Wright", + "Company": "LegalEagle", + "Title": "Attorney", + "Phone number": "(555) 012-3456", + "Email": "hannah.wright@legaleagle.com", + "Registration date": "2023-10-15" + }, + { + "Name": "Ian Walker", + "Company": "HomeGoods", + "Title": "Retail Manager", + "Phone number": "(555) 123-4567", + "Email": "ian.walker@homegoods.com", + "Registration date": "2023-11-22" + }, + { + "Name": "Julia King", + "Company": "TravelWise", + "Title": "Travel Agent", + "Phone number": "(555) 234-5678", + "Email": "julia.king@travelwise.com", + "Registration date": "2023-12-30" + }, + { + "Name": "Kevin Scott", + "Company": "CleanEnergy", + "Title": "Environmental Scientist", + "Phone number": "(555) 345-6789", + "Email": "kevin.scott@cleanenergy.com", + "Registration date": "2024-01-08" + }, + { + "Name": "Laura Baker", + "Company": "MediaMinds", + "Title": "Content Strategist", + "Phone number": "(555) 456-7890", + "Email": "laura.baker@mediaminds.com", + "Registration date": "2024-02-18" + }, + { + "Name": "Michael Young", + "Company": "CyberSecure", + "Title": "Cybersecurity Specialist", + "Phone number": "(555) 567-8901", + "Email": "michael.young@cybersecure.com", + "Registration date": "2024-03-29" + }, + { + "Name": "Nina Patel", + "Company": "AgriTech", + "Title": "Agricultural Engineer", + "Phone number": "(555) 678-9012", + "Email": "nina.patel@agritech.com", + "Registration date": "2024-04-10" + } + ], + "label": "Data", + "searchKey": "", + "parentId": "ozrdc7wrwm", + "buttonLabel": "Action", + "renderMode": "CANVAS", + "mobileTopRow": 0, + "horizontalAlignment": "start", + "isVisibleSearch": false, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "isVisiblePagination": false, + "buttonVariant": "filled", + "verticalAlignment": "center" + }, + { + "isVisibleDownload": true, + "topRow": 0, + "isSortable": true, + "pageSize": "1", + "type": "WDS_TABLE_WIDGET", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [], + "needsHeightForContent": true, + "leftColumn": 0, + "delimiter": ",", + "defaultSelectedRowIndex": 0, + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisibleFilters": true, + "isVisible": false, + "enableClientSideSearch": true, + "version": 2, + "totalRecordsCount": 0, + "tags": [ + "Suggested", + "Display" + ], + "isLoading": false, + "columnUpdatedAt": 1719985967344, + "defaultSelectedRowIndices": [ + 0 + ], + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Table1Copy1", + "defaultPageSize": 0, + "columnOrder": [ + "Name", + "Company", + "Title", + "Phone_number", + "Email", + "Registration_date" + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + } + ], + "buttonColor": "accent", + "displayName": "Table", + "bottomRow": 10, + "columnWidthMap": {}, + "parentRowSpace": 10, + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "primaryColumns": { + "Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0, + "width": 150, + "originalId": "Name", + "id": "Name", + "alias": "Name", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Company": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1, + "width": 150, + "originalId": "Company", + "id": "Company", + "alias": "Company", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Company", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2, + "width": 150, + "originalId": "Title", + "id": "Title", + "alias": "Title", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Title", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Phone_number": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3, + "width": 150, + "originalId": "Phone number", + "id": "Phone_number", + "alias": "Phone number", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone number", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4, + "width": 150, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Registration_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5, + "width": 150, + "originalId": "Registration date", + "id": "Registration_date", + "alias": "Registration date", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "date", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Registration date", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + } + }, + "key": "o2lva12nb7", + "canFreezeColumn": true, + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "46pr0fhsrs", + "tableData": [ + { + "Name": "John Doe", + "Company": "TechCorp", + "Title": "Software Engineer", + "Phone number": "(555) 123-4567", + "Email": "john.doe@techcorp.com", + "Registration date": "2023-01-15" + }, + { + "Name": "Jane Smith", + "Company": "Innovate Ltd", + "Title": "Project Manager", + "Phone number": "(555) 234-5678", + "Email": "jane.smith@innovatelt.com", + "Registration date": "2023-02-20" + }, + { + "Name": "Alice Johnson", + "Company": "Web Solutions", + "Title": "UX Designer", + "Phone number": "(555) 345-6789", + "Email": "alice.johnson@websolutions.com", + "Registration date": "2023-03-10" + }, + { + "Name": "Bob Brown", + "Company": "BuildIt", + "Title": "Construction Manager", + "Phone number": "(555) 456-7890", + "Email": "bob.brown@buildit.com", + "Registration date": "2023-04-05" + }, + { + "Name": "Charlie Davis", + "Company": "FinTech Inc", + "Title": "Financial Analyst", + "Phone number": "(555) 567-8901", + "Email": "charlie.davis@fintechinc.com", + "Registration date": "2023-05-12" + }, + { + "Name": "Dana Lee", + "Company": "HealthFirst", + "Title": "Nurse Practitioner", + "Phone number": "(555) 678-9012", + "Email": "dana.lee@healthfirst.com", + "Registration date": "2023-06-01" + }, + { + "Name": "Evan Martinez", + "Company": "AutoPro", + "Title": "Mechanical Engineer", + "Phone number": "(555) 789-0123", + "Email": "evan.martinez@autopro.com", + "Registration date": "2023-07-19" + }, + { + "Name": "Fiona Green", + "Company": "EduFuture", + "Title": "Curriculum Developer", + "Phone number": "(555) 890-1234", + "Email": "fiona.green@edufuture.com", + "Registration date": "2023-08-23" + }, + { + "Name": "George Harris", + "Company": "MarketMasters", + "Title": "Marketing Director", + "Phone number": "(555) 901-2345", + "Email": "george.harris@marketmasters.com", + "Registration date": "2023-09-07" + }, + { + "Name": "Hannah Wright", + "Company": "LegalEagle", + "Title": "Attorney", + "Phone number": "(555) 012-3456", + "Email": "hannah.wright@legaleagle.com", + "Registration date": "2023-10-15" + }, + { + "Name": "Ian Walker", + "Company": "HomeGoods", + "Title": "Retail Manager", + "Phone number": "(555) 123-4567", + "Email": "ian.walker@homegoods.com", + "Registration date": "2023-11-22" + }, + { + "Name": "Julia King", + "Company": "TravelWise", + "Title": "Travel Agent", + "Phone number": "(555) 234-5678", + "Email": "julia.king@travelwise.com", + "Registration date": "2023-12-30" + }, + { + "Name": "Kevin Scott", + "Company": "CleanEnergy", + "Title": "Environmental Scientist", + "Phone number": "(555) 345-6789", + "Email": "kevin.scott@cleanenergy.com", + "Registration date": "2024-01-08" + }, + { + "Name": "Laura Baker", + "Company": "MediaMinds", + "Title": "Content Strategist", + "Phone number": "(555) 456-7890", + "Email": "laura.baker@mediaminds.com", + "Registration date": "2024-02-18" + }, + { + "Name": "Michael Young", + "Company": "CyberSecure", + "Title": "Cybersecurity Specialist", + "Phone number": "(555) 567-8901", + "Email": "michael.young@cybersecure.com", + "Registration date": "2024-03-29" + }, + { + "Name": "Nina Patel", + "Company": "AgriTech", + "Title": "Agricultural Engineer", + "Phone number": "(555) 678-9012", + "Email": "nina.patel@agritech.com", + "Registration date": "2024-04-10" + } + ], + "label": "Data", + "searchKey": "", + "parentId": "ozrdc7wrwm", + "buttonLabel": "Action", + "renderMode": "CANVAS", + "mobileTopRow": 0, + "horizontalAlignment": "start", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "isVisiblePagination": true, + "buttonVariant": "filled", + "verticalAlignment": "center" + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "xn7kggh7c1", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "ozrdc7wrwm", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "tu71kxqc59", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "mvo8cwrej8", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "ypkegwpwwq", + "widgetType": "WDS_TABLE_WIDGET" + } + ], + "allowedWidgetTypes": [], + "maxChildLimit": 1 + }, + { + "insertChild": true, + "layoutId": "susvecct9e", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "0t5ujl8mr1", + "widgetType": "WDS_TABLE_WIDGET" + } + ], + "allowedWidgetTypes": [], + "maxChildLimit": 1 + }, + { + "insertChild": true, + "layoutId": "7cph7t3t7v", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "46pr0fhsrs", + "widgetType": "WDS_TABLE_WIDGET" + } + ], + "allowedWidgetTypes": [], + "maxChildLimit": 1 + } + ], + "layoutId": "4maeiegoyn", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "ck9px4n4my", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "tu71kxqc59", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 1, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "ozrdc7wrwm", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "dxo6qpesx9", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "ozrdc7wrwm": 12 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section2", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "isVisibleDownload": true, + "topRow": 0, + "isSortable": true, + "pageSize": "1", + "type": "WDS_TABLE_WIDGET", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [], + "needsHeightForContent": true, + "leftColumn": 0, + "delimiter": ",", + "defaultSelectedRowIndex": 0, + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisibleFilters": true, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2, + "totalRecordsCount": 0, + "tags": [ + "Suggested", + "Display" + ], + "isLoading": false, + "columnUpdatedAt": 1719985967344, + "defaultSelectedRowIndices": [ + 0 + ], + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Table1Copy2", + "defaultPageSize": 0, + "columnOrder": [ + "Name", + "Company", + "Title", + "Phone_number", + "Email", + "Registration_date" + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + } + ], + "buttonColor": "accent", + "displayName": "Table", + "bottomRow": 10, + "columnWidthMap": {}, + "parentRowSpace": 10, + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "primaryColumns": { + "Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0, + "width": 150, + "originalId": "Name", + "id": "Name", + "alias": "Name", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Company": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1, + "width": 150, + "originalId": "Company", + "id": "Company", + "alias": "Company", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Company", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2, + "width": 150, + "originalId": "Title", + "id": "Title", + "alias": "Title", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Title", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Phone_number": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3, + "width": 150, + "originalId": "Phone number", + "id": "Phone_number", + "alias": "Phone number", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone number", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4, + "width": 150, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Registration_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5, + "width": 150, + "originalId": "Registration date", + "id": "Registration_date", + "alias": "Registration date", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "date", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Registration date", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + } + }, + "key": "o2lva12nb7", + "canFreezeColumn": true, + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "7a9yk5a2w3", + "tableData": [ + { + "Name": "John Doe", + "Company": "TechCorp", + "Title": "Software Engineer", + "Phone number": "(555) 123-4567", + "Email": "john.doe@techcorp.com", + "Registration date": "2023-01-15" + }, + { + "Name": "Jane Smith", + "Company": "Innovate Ltd", + "Title": "Project Manager", + "Phone number": "(555) 234-5678", + "Email": "jane.smith@innovatelt.com", + "Registration date": "2023-02-20" + }, + { + "Name": "Alice Johnson", + "Company": "Web Solutions", + "Title": "UX Designer", + "Phone number": "(555) 345-6789", + "Email": "alice.johnson@websolutions.com", + "Registration date": "2023-03-10" + }, + { + "Name": "Bob Brown", + "Company": "BuildIt", + "Title": "Construction Manager", + "Phone number": "(555) 456-7890", + "Email": "bob.brown@buildit.com", + "Registration date": "2023-04-05" + }, + { + "Name": "Charlie Davis", + "Company": "FinTech Inc", + "Title": "Financial Analyst", + "Phone number": "(555) 567-8901", + "Email": "charlie.davis@fintechinc.com", + "Registration date": "2023-05-12" + }, + { + "Name": "Dana Lee", + "Company": "HealthFirst", + "Title": "Nurse Practitioner", + "Phone number": "(555) 678-9012", + "Email": "dana.lee@healthfirst.com", + "Registration date": "2023-06-01" + }, + { + "Name": "Evan Martinez", + "Company": "AutoPro", + "Title": "Mechanical Engineer", + "Phone number": "(555) 789-0123", + "Email": "evan.martinez@autopro.com", + "Registration date": "2023-07-19" + }, + { + "Name": "Fiona Green", + "Company": "EduFuture", + "Title": "Curriculum Developer", + "Phone number": "(555) 890-1234", + "Email": "fiona.green@edufuture.com", + "Registration date": "2023-08-23" + }, + { + "Name": "George Harris", + "Company": "MarketMasters", + "Title": "Marketing Director", + "Phone number": "(555) 901-2345", + "Email": "george.harris@marketmasters.com", + "Registration date": "2023-09-07" + }, + { + "Name": "Hannah Wright", + "Company": "LegalEagle", + "Title": "Attorney", + "Phone number": "(555) 012-3456", + "Email": "hannah.wright@legaleagle.com", + "Registration date": "2023-10-15" + }, + { + "Name": "Ian Walker", + "Company": "HomeGoods", + "Title": "Retail Manager", + "Phone number": "(555) 123-4567", + "Email": "ian.walker@homegoods.com", + "Registration date": "2023-11-22" + }, + { + "Name": "Julia King", + "Company": "TravelWise", + "Title": "Travel Agent", + "Phone number": "(555) 234-5678", + "Email": "julia.king@travelwise.com", + "Registration date": "2023-12-30" + }, + { + "Name": "Kevin Scott", + "Company": "CleanEnergy", + "Title": "Environmental Scientist", + "Phone number": "(555) 345-6789", + "Email": "kevin.scott@cleanenergy.com", + "Registration date": "2024-01-08" + }, + { + "Name": "Laura Baker", + "Company": "MediaMinds", + "Title": "Content Strategist", + "Phone number": "(555) 456-7890", + "Email": "laura.baker@mediaminds.com", + "Registration date": "2024-02-18" + }, + { + "Name": "Michael Young", + "Company": "CyberSecure", + "Title": "Cybersecurity Specialist", + "Phone number": "(555) 567-8901", + "Email": "michael.young@cybersecure.com", + "Registration date": "2024-03-29" + }, + { + "Name": "Nina Patel", + "Company": "AgriTech", + "Title": "Agricultural Engineer", + "Phone number": "(555) 678-9012", + "Email": "nina.patel@agritech.com", + "Registration date": "2024-04-10" + } + ], + "label": "Data", + "searchKey": "", + "parentId": "t255oppt4o", + "buttonLabel": "Action", + "renderMode": "CANVAS", + "mobileTopRow": 0, + "horizontalAlignment": "start", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "isVisiblePagination": true, + "buttonVariant": "filled", + "verticalAlignment": "center" + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "xn7kggh7c1", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "t255oppt4o", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "uecezzozwu", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "5bxjv803gk", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "7a9yk5a2w3", + "widgetType": "WDS_TABLE_WIDGET" + } + ], + "allowedWidgetTypes": [], + "maxChildLimit": 1 + } + ], + "layoutId": "i2l6wtdqwk", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone3", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "isVisibleDownload": true, + "topRow": 0, + "isSortable": true, + "pageSize": "1", + "type": "WDS_TABLE_WIDGET", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [], + "needsHeightForContent": true, + "leftColumn": 0, + "delimiter": ",", + "defaultSelectedRowIndex": 0, + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisibleFilters": true, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2, + "totalRecordsCount": 0, + "tags": [ + "Suggested", + "Display" + ], + "isLoading": false, + "columnUpdatedAt": 1719985967344, + "defaultSelectedRowIndices": [ + 0 + ], + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Table1Copy3", + "defaultPageSize": 0, + "columnOrder": [ + "Name", + "Company", + "Title", + "Phone_number", + "Email", + "Registration_date" + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + } + ], + "buttonColor": "accent", + "displayName": "Table", + "bottomRow": 10, + "columnWidthMap": {}, + "parentRowSpace": 10, + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "primaryColumns": { + "Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0, + "width": 150, + "originalId": "Name", + "id": "Name", + "alias": "Name", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Company": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1, + "width": 150, + "originalId": "Company", + "id": "Company", + "alias": "Company", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Company", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2, + "width": 150, + "originalId": "Title", + "id": "Title", + "alias": "Title", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Title", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Phone_number": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3, + "width": 150, + "originalId": "Phone number", + "id": "Phone_number", + "alias": "Phone number", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone number", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4, + "width": 150, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Registration_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5, + "width": 150, + "originalId": "Registration date", + "id": "Registration_date", + "alias": "Registration date", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "date", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Registration date", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + } + }, + "key": "o2lva12nb7", + "canFreezeColumn": true, + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "hvn7mpmlol", + "tableData": [ + { + "Name": "John Doe", + "Company": "TechCorp", + "Title": "Software Engineer", + "Phone number": "(555) 123-4567", + "Email": "john.doe@techcorp.com", + "Registration date": "2023-01-15" + }, + { + "Name": "Jane Smith", + "Company": "Innovate Ltd", + "Title": "Project Manager", + "Phone number": "(555) 234-5678", + "Email": "jane.smith@innovatelt.com", + "Registration date": "2023-02-20" + }, + { + "Name": "Alice Johnson", + "Company": "Web Solutions", + "Title": "UX Designer", + "Phone number": "(555) 345-6789", + "Email": "alice.johnson@websolutions.com", + "Registration date": "2023-03-10" + }, + { + "Name": "Bob Brown", + "Company": "BuildIt", + "Title": "Construction Manager", + "Phone number": "(555) 456-7890", + "Email": "bob.brown@buildit.com", + "Registration date": "2023-04-05" + }, + { + "Name": "Charlie Davis", + "Company": "FinTech Inc", + "Title": "Financial Analyst", + "Phone number": "(555) 567-8901", + "Email": "charlie.davis@fintechinc.com", + "Registration date": "2023-05-12" + }, + { + "Name": "Dana Lee", + "Company": "HealthFirst", + "Title": "Nurse Practitioner", + "Phone number": "(555) 678-9012", + "Email": "dana.lee@healthfirst.com", + "Registration date": "2023-06-01" + }, + { + "Name": "Evan Martinez", + "Company": "AutoPro", + "Title": "Mechanical Engineer", + "Phone number": "(555) 789-0123", + "Email": "evan.martinez@autopro.com", + "Registration date": "2023-07-19" + }, + { + "Name": "Fiona Green", + "Company": "EduFuture", + "Title": "Curriculum Developer", + "Phone number": "(555) 890-1234", + "Email": "fiona.green@edufuture.com", + "Registration date": "2023-08-23" + }, + { + "Name": "George Harris", + "Company": "MarketMasters", + "Title": "Marketing Director", + "Phone number": "(555) 901-2345", + "Email": "george.harris@marketmasters.com", + "Registration date": "2023-09-07" + }, + { + "Name": "Hannah Wright", + "Company": "LegalEagle", + "Title": "Attorney", + "Phone number": "(555) 012-3456", + "Email": "hannah.wright@legaleagle.com", + "Registration date": "2023-10-15" + }, + { + "Name": "Ian Walker", + "Company": "HomeGoods", + "Title": "Retail Manager", + "Phone number": "(555) 123-4567", + "Email": "ian.walker@homegoods.com", + "Registration date": "2023-11-22" + }, + { + "Name": "Julia King", + "Company": "TravelWise", + "Title": "Travel Agent", + "Phone number": "(555) 234-5678", + "Email": "julia.king@travelwise.com", + "Registration date": "2023-12-30" + }, + { + "Name": "Kevin Scott", + "Company": "CleanEnergy", + "Title": "Environmental Scientist", + "Phone number": "(555) 345-6789", + "Email": "kevin.scott@cleanenergy.com", + "Registration date": "2024-01-08" + }, + { + "Name": "Laura Baker", + "Company": "MediaMinds", + "Title": "Content Strategist", + "Phone number": "(555) 456-7890", + "Email": "laura.baker@mediaminds.com", + "Registration date": "2024-02-18" + }, + { + "Name": "Michael Young", + "Company": "CyberSecure", + "Title": "Cybersecurity Specialist", + "Phone number": "(555) 567-8901", + "Email": "michael.young@cybersecure.com", + "Registration date": "2024-03-29" + }, + { + "Name": "Nina Patel", + "Company": "AgriTech", + "Title": "Agricultural Engineer", + "Phone number": "(555) 678-9012", + "Email": "nina.patel@agritech.com", + "Registration date": "2024-04-10" + } + ], + "label": "Data", + "searchKey": "", + "parentId": "wvbgamuuq7", + "buttonLabel": "Action", + "renderMode": "CANVAS", + "mobileTopRow": 0, + "horizontalAlignment": "start", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "isVisiblePagination": true, + "buttonVariant": "filled", + "verticalAlignment": "center" + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "xn7kggh7c1", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "wvbgamuuq7", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "uecezzozwu", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "g10dqpb4u7", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "hvn7mpmlol", + "widgetType": "WDS_TABLE_WIDGET" + } + ], + "allowedWidgetTypes": [], + "maxChildLimit": 1 + } + ], + "layoutId": "lyr039cmwb", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "ck9px4n4my", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "uecezzozwu", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "t255oppt4o", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "wvbgamuuq7", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "3sfc0knngq", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "t255oppt4o": 6, + "wvbgamuuq7": 6 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section3Copy", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone4Copy", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "isVisibleDownload": true, + "topRow": 0, + "isSortable": true, + "pageSize": "1", + "type": "WDS_TABLE_WIDGET", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [], + "needsHeightForContent": true, + "leftColumn": 0, + "delimiter": ",", + "defaultSelectedRowIndex": 0, + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisibleFilters": true, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2, + "totalRecordsCount": 0, + "tags": [ + "Suggested", + "Display" + ], + "isLoading": false, + "columnUpdatedAt": 1719985967344, + "defaultSelectedRowIndices": [ + 0 + ], + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Table1Copy4Copy", + "defaultPageSize": 0, + "columnOrder": [ + "Name", + "Company", + "Title", + "Phone_number", + "Email", + "Registration_date" + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + } + ], + "buttonColor": "accent", + "displayName": "Table", + "bottomRow": 10, + "columnWidthMap": {}, + "parentRowSpace": 10, + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "primaryColumns": { + "Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0, + "width": 150, + "originalId": "Name", + "id": "Name", + "alias": "Name", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Company": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1, + "width": 150, + "originalId": "Company", + "id": "Company", + "alias": "Company", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Company", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2, + "width": 150, + "originalId": "Title", + "id": "Title", + "alias": "Title", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Title", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Phone_number": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3, + "width": 150, + "originalId": "Phone number", + "id": "Phone_number", + "alias": "Phone number", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone number", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4, + "width": 150, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Registration_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5, + "width": 150, + "originalId": "Registration date", + "id": "Registration_date", + "alias": "Registration date", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "date", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Registration date", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + } + }, + "key": "o2lva12nb7", + "canFreezeColumn": true, + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "1nz0qk27gc", + "tableData": [ + { + "Name": "John Doe", + "Company": "TechCorp", + "Title": "Software Engineer", + "Phone number": "(555) 123-4567", + "Email": "john.doe@techcorp.com", + "Registration date": "2023-01-15" + }, + { + "Name": "Jane Smith", + "Company": "Innovate Ltd", + "Title": "Project Manager", + "Phone number": "(555) 234-5678", + "Email": "jane.smith@innovatelt.com", + "Registration date": "2023-02-20" + }, + { + "Name": "Alice Johnson", + "Company": "Web Solutions", + "Title": "UX Designer", + "Phone number": "(555) 345-6789", + "Email": "alice.johnson@websolutions.com", + "Registration date": "2023-03-10" + }, + { + "Name": "Bob Brown", + "Company": "BuildIt", + "Title": "Construction Manager", + "Phone number": "(555) 456-7890", + "Email": "bob.brown@buildit.com", + "Registration date": "2023-04-05" + }, + { + "Name": "Charlie Davis", + "Company": "FinTech Inc", + "Title": "Financial Analyst", + "Phone number": "(555) 567-8901", + "Email": "charlie.davis@fintechinc.com", + "Registration date": "2023-05-12" + }, + { + "Name": "Dana Lee", + "Company": "HealthFirst", + "Title": "Nurse Practitioner", + "Phone number": "(555) 678-9012", + "Email": "dana.lee@healthfirst.com", + "Registration date": "2023-06-01" + }, + { + "Name": "Evan Martinez", + "Company": "AutoPro", + "Title": "Mechanical Engineer", + "Phone number": "(555) 789-0123", + "Email": "evan.martinez@autopro.com", + "Registration date": "2023-07-19" + }, + { + "Name": "Fiona Green", + "Company": "EduFuture", + "Title": "Curriculum Developer", + "Phone number": "(555) 890-1234", + "Email": "fiona.green@edufuture.com", + "Registration date": "2023-08-23" + }, + { + "Name": "George Harris", + "Company": "MarketMasters", + "Title": "Marketing Director", + "Phone number": "(555) 901-2345", + "Email": "george.harris@marketmasters.com", + "Registration date": "2023-09-07" + }, + { + "Name": "Hannah Wright", + "Company": "LegalEagle", + "Title": "Attorney", + "Phone number": "(555) 012-3456", + "Email": "hannah.wright@legaleagle.com", + "Registration date": "2023-10-15" + }, + { + "Name": "Ian Walker", + "Company": "HomeGoods", + "Title": "Retail Manager", + "Phone number": "(555) 123-4567", + "Email": "ian.walker@homegoods.com", + "Registration date": "2023-11-22" + }, + { + "Name": "Julia King", + "Company": "TravelWise", + "Title": "Travel Agent", + "Phone number": "(555) 234-5678", + "Email": "julia.king@travelwise.com", + "Registration date": "2023-12-30" + }, + { + "Name": "Kevin Scott", + "Company": "CleanEnergy", + "Title": "Environmental Scientist", + "Phone number": "(555) 345-6789", + "Email": "kevin.scott@cleanenergy.com", + "Registration date": "2024-01-08" + }, + { + "Name": "Laura Baker", + "Company": "MediaMinds", + "Title": "Content Strategist", + "Phone number": "(555) 456-7890", + "Email": "laura.baker@mediaminds.com", + "Registration date": "2024-02-18" + }, + { + "Name": "Michael Young", + "Company": "CyberSecure", + "Title": "Cybersecurity Specialist", + "Phone number": "(555) 567-8901", + "Email": "michael.young@cybersecure.com", + "Registration date": "2024-03-29" + }, + { + "Name": "Nina Patel", + "Company": "AgriTech", + "Title": "Agricultural Engineer", + "Phone number": "(555) 678-9012", + "Email": "nina.patel@agritech.com", + "Registration date": "2024-04-10" + } + ], + "label": "Data", + "searchKey": "", + "parentId": "1p0w61jjla", + "buttonLabel": "Action", + "renderMode": "CANVAS", + "mobileTopRow": 0, + "horizontalAlignment": "start", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "isVisiblePagination": true, + "buttonVariant": "filled", + "verticalAlignment": "center" + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "xn7kggh7c1", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "1p0w61jjla", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "am2zkpv94i", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "a6b8v3jsxe", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "1nz0qk27gc", + "widgetType": "WDS_TABLE_WIDGET" + } + ], + "allowedWidgetTypes": [], + "maxChildLimit": 1 + } + ], + "layoutId": "bjhx0sjwm8", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone5Copy", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "isVisibleDownload": true, + "topRow": 0, + "isSortable": true, + "pageSize": "1", + "type": "WDS_TABLE_WIDGET", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [], + "needsHeightForContent": true, + "leftColumn": 0, + "delimiter": ",", + "defaultSelectedRowIndex": 0, + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisibleFilters": true, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2, + "totalRecordsCount": 0, + "tags": [ + "Suggested", + "Display" + ], + "isLoading": false, + "columnUpdatedAt": 1719985967344, + "defaultSelectedRowIndices": [ + 0 + ], + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Table1Copy5Copy1", + "defaultPageSize": 0, + "columnOrder": [ + "Name", + "Company", + "Title", + "Phone_number", + "Email", + "Registration_date" + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + } + ], + "buttonColor": "accent", + "displayName": "Table", + "bottomRow": 10, + "columnWidthMap": {}, + "parentRowSpace": 10, + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "primaryColumns": { + "Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0, + "width": 150, + "originalId": "Name", + "id": "Name", + "alias": "Name", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Company": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1, + "width": 150, + "originalId": "Company", + "id": "Company", + "alias": "Company", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Company", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2, + "width": 150, + "originalId": "Title", + "id": "Title", + "alias": "Title", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Title", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Phone_number": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3, + "width": 150, + "originalId": "Phone number", + "id": "Phone_number", + "alias": "Phone number", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone number", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4, + "width": 150, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Registration_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5, + "width": 150, + "originalId": "Registration date", + "id": "Registration_date", + "alias": "Registration date", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "date", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Registration date", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + } + }, + "key": "o2lva12nb7", + "canFreezeColumn": true, + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "cncm6kcqgf", + "tableData": [ + { + "Name": "John Doe", + "Company": "TechCorp", + "Title": "Software Engineer", + "Phone number": "(555) 123-4567", + "Email": "john.doe@techcorp.com", + "Registration date": "2023-01-15" + }, + { + "Name": "Jane Smith", + "Company": "Innovate Ltd", + "Title": "Project Manager", + "Phone number": "(555) 234-5678", + "Email": "jane.smith@innovatelt.com", + "Registration date": "2023-02-20" + }, + { + "Name": "Alice Johnson", + "Company": "Web Solutions", + "Title": "UX Designer", + "Phone number": "(555) 345-6789", + "Email": "alice.johnson@websolutions.com", + "Registration date": "2023-03-10" + }, + { + "Name": "Bob Brown", + "Company": "BuildIt", + "Title": "Construction Manager", + "Phone number": "(555) 456-7890", + "Email": "bob.brown@buildit.com", + "Registration date": "2023-04-05" + }, + { + "Name": "Charlie Davis", + "Company": "FinTech Inc", + "Title": "Financial Analyst", + "Phone number": "(555) 567-8901", + "Email": "charlie.davis@fintechinc.com", + "Registration date": "2023-05-12" + }, + { + "Name": "Dana Lee", + "Company": "HealthFirst", + "Title": "Nurse Practitioner", + "Phone number": "(555) 678-9012", + "Email": "dana.lee@healthfirst.com", + "Registration date": "2023-06-01" + }, + { + "Name": "Evan Martinez", + "Company": "AutoPro", + "Title": "Mechanical Engineer", + "Phone number": "(555) 789-0123", + "Email": "evan.martinez@autopro.com", + "Registration date": "2023-07-19" + }, + { + "Name": "Fiona Green", + "Company": "EduFuture", + "Title": "Curriculum Developer", + "Phone number": "(555) 890-1234", + "Email": "fiona.green@edufuture.com", + "Registration date": "2023-08-23" + }, + { + "Name": "George Harris", + "Company": "MarketMasters", + "Title": "Marketing Director", + "Phone number": "(555) 901-2345", + "Email": "george.harris@marketmasters.com", + "Registration date": "2023-09-07" + }, + { + "Name": "Hannah Wright", + "Company": "LegalEagle", + "Title": "Attorney", + "Phone number": "(555) 012-3456", + "Email": "hannah.wright@legaleagle.com", + "Registration date": "2023-10-15" + }, + { + "Name": "Ian Walker", + "Company": "HomeGoods", + "Title": "Retail Manager", + "Phone number": "(555) 123-4567", + "Email": "ian.walker@homegoods.com", + "Registration date": "2023-11-22" + }, + { + "Name": "Julia King", + "Company": "TravelWise", + "Title": "Travel Agent", + "Phone number": "(555) 234-5678", + "Email": "julia.king@travelwise.com", + "Registration date": "2023-12-30" + }, + { + "Name": "Kevin Scott", + "Company": "CleanEnergy", + "Title": "Environmental Scientist", + "Phone number": "(555) 345-6789", + "Email": "kevin.scott@cleanenergy.com", + "Registration date": "2024-01-08" + }, + { + "Name": "Laura Baker", + "Company": "MediaMinds", + "Title": "Content Strategist", + "Phone number": "(555) 456-7890", + "Email": "laura.baker@mediaminds.com", + "Registration date": "2024-02-18" + }, + { + "Name": "Michael Young", + "Company": "CyberSecure", + "Title": "Cybersecurity Specialist", + "Phone number": "(555) 567-8901", + "Email": "michael.young@cybersecure.com", + "Registration date": "2024-03-29" + }, + { + "Name": "Nina Patel", + "Company": "AgriTech", + "Title": "Agricultural Engineer", + "Phone number": "(555) 678-9012", + "Email": "nina.patel@agritech.com", + "Registration date": "2024-04-10" + } + ], + "label": "Data", + "searchKey": "", + "parentId": "imhclinb7t", + "buttonLabel": "Action", + "renderMode": "CANVAS", + "mobileTopRow": 0, + "horizontalAlignment": "start", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "isVisiblePagination": true, + "buttonVariant": "filled", + "verticalAlignment": "center" + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "xn7kggh7c1", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "imhclinb7t", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "am2zkpv94i", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "005b6gl516", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "cncm6kcqgf", + "widgetType": "WDS_TABLE_WIDGET" + } + ], + "allowedWidgetTypes": [], + "maxChildLimit": 1 + } + ], + "layoutId": "3e9spnko17", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone6Copy", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "isVisibleDownload": true, + "topRow": 0, + "isSortable": true, + "pageSize": "1", + "type": "WDS_TABLE_WIDGET", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [], + "needsHeightForContent": true, + "leftColumn": 0, + "delimiter": ",", + "defaultSelectedRowIndex": 0, + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisibleFilters": true, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2, + "totalRecordsCount": 0, + "tags": [ + "Suggested", + "Display" + ], + "isLoading": false, + "columnUpdatedAt": 1719985967344, + "defaultSelectedRowIndices": [ + 0 + ], + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Table1Copy5CopyCopy1", + "defaultPageSize": 0, + "columnOrder": [ + "Name", + "Company", + "Title", + "Phone_number", + "Email", + "Registration_date" + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + } + ], + "buttonColor": "accent", + "displayName": "Table", + "bottomRow": 10, + "columnWidthMap": {}, + "parentRowSpace": 10, + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "primaryColumns": { + "Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0, + "width": 150, + "originalId": "Name", + "id": "Name", + "alias": "Name", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Company": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1, + "width": 150, + "originalId": "Company", + "id": "Company", + "alias": "Company", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Company", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2, + "width": 150, + "originalId": "Title", + "id": "Title", + "alias": "Title", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Title", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Phone_number": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3, + "width": 150, + "originalId": "Phone number", + "id": "Phone_number", + "alias": "Phone number", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone number", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4, + "width": 150, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Registration_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5, + "width": 150, + "originalId": "Registration date", + "id": "Registration_date", + "alias": "Registration date", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "date", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Registration date", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + } + }, + "key": "o2lva12nb7", + "canFreezeColumn": true, + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "xdrd47znle", + "tableData": [ + { + "Name": "John Doe", + "Company": "TechCorp", + "Title": "Software Engineer", + "Phone number": "(555) 123-4567", + "Email": "john.doe@techcorp.com", + "Registration date": "2023-01-15" + }, + { + "Name": "Jane Smith", + "Company": "Innovate Ltd", + "Title": "Project Manager", + "Phone number": "(555) 234-5678", + "Email": "jane.smith@innovatelt.com", + "Registration date": "2023-02-20" + }, + { + "Name": "Alice Johnson", + "Company": "Web Solutions", + "Title": "UX Designer", + "Phone number": "(555) 345-6789", + "Email": "alice.johnson@websolutions.com", + "Registration date": "2023-03-10" + }, + { + "Name": "Bob Brown", + "Company": "BuildIt", + "Title": "Construction Manager", + "Phone number": "(555) 456-7890", + "Email": "bob.brown@buildit.com", + "Registration date": "2023-04-05" + }, + { + "Name": "Charlie Davis", + "Company": "FinTech Inc", + "Title": "Financial Analyst", + "Phone number": "(555) 567-8901", + "Email": "charlie.davis@fintechinc.com", + "Registration date": "2023-05-12" + }, + { + "Name": "Dana Lee", + "Company": "HealthFirst", + "Title": "Nurse Practitioner", + "Phone number": "(555) 678-9012", + "Email": "dana.lee@healthfirst.com", + "Registration date": "2023-06-01" + }, + { + "Name": "Evan Martinez", + "Company": "AutoPro", + "Title": "Mechanical Engineer", + "Phone number": "(555) 789-0123", + "Email": "evan.martinez@autopro.com", + "Registration date": "2023-07-19" + }, + { + "Name": "Fiona Green", + "Company": "EduFuture", + "Title": "Curriculum Developer", + "Phone number": "(555) 890-1234", + "Email": "fiona.green@edufuture.com", + "Registration date": "2023-08-23" + }, + { + "Name": "George Harris", + "Company": "MarketMasters", + "Title": "Marketing Director", + "Phone number": "(555) 901-2345", + "Email": "george.harris@marketmasters.com", + "Registration date": "2023-09-07" + }, + { + "Name": "Hannah Wright", + "Company": "LegalEagle", + "Title": "Attorney", + "Phone number": "(555) 012-3456", + "Email": "hannah.wright@legaleagle.com", + "Registration date": "2023-10-15" + }, + { + "Name": "Ian Walker", + "Company": "HomeGoods", + "Title": "Retail Manager", + "Phone number": "(555) 123-4567", + "Email": "ian.walker@homegoods.com", + "Registration date": "2023-11-22" + }, + { + "Name": "Julia King", + "Company": "TravelWise", + "Title": "Travel Agent", + "Phone number": "(555) 234-5678", + "Email": "julia.king@travelwise.com", + "Registration date": "2023-12-30" + }, + { + "Name": "Kevin Scott", + "Company": "CleanEnergy", + "Title": "Environmental Scientist", + "Phone number": "(555) 345-6789", + "Email": "kevin.scott@cleanenergy.com", + "Registration date": "2024-01-08" + }, + { + "Name": "Laura Baker", + "Company": "MediaMinds", + "Title": "Content Strategist", + "Phone number": "(555) 456-7890", + "Email": "laura.baker@mediaminds.com", + "Registration date": "2024-02-18" + }, + { + "Name": "Michael Young", + "Company": "CyberSecure", + "Title": "Cybersecurity Specialist", + "Phone number": "(555) 567-8901", + "Email": "michael.young@cybersecure.com", + "Registration date": "2024-03-29" + }, + { + "Name": "Nina Patel", + "Company": "AgriTech", + "Title": "Agricultural Engineer", + "Phone number": "(555) 678-9012", + "Email": "nina.patel@agritech.com", + "Registration date": "2024-04-10" + } + ], + "label": "Data", + "searchKey": "", + "parentId": "mni2sungpe", + "buttonLabel": "Action", + "renderMode": "CANVAS", + "mobileTopRow": 0, + "horizontalAlignment": "start", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "isVisiblePagination": true, + "buttonVariant": "filled", + "verticalAlignment": "center" + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "xn7kggh7c1", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "mni2sungpe", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "am2zkpv94i", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "wxmz842d78", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "xdrd47znle", + "widgetType": "WDS_TABLE_WIDGET" + } + ], + "allowedWidgetTypes": [], + "maxChildLimit": 1 + } + ], + "layoutId": "kzatjgowju", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "ck9px4n4my", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "am2zkpv94i", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 3, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "1p0w61jjla", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "imhclinb7t", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "mni2sungpe", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "61g7doh6x7", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "1p0w61jjla": 4, + "imhclinb7t": 4, + "mni2sungpe": 4 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section3Copy1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone4Copy1", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "isVisibleDownload": true, + "topRow": 0, + "isSortable": true, + "pageSize": "1", + "type": "WDS_TABLE_WIDGET", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [], + "needsHeightForContent": true, + "leftColumn": 0, + "delimiter": ",", + "defaultSelectedRowIndex": 0, + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisibleFilters": true, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2, + "totalRecordsCount": 0, + "tags": [ + "Suggested", + "Display" + ], + "isLoading": false, + "columnUpdatedAt": 1719985967344, + "defaultSelectedRowIndices": [ + 0 + ], + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Table1Copy4Copy1", + "defaultPageSize": 0, + "columnOrder": [ + "Name", + "Company", + "Title", + "Phone_number", + "Email", + "Registration_date" + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + } + ], + "buttonColor": "accent", + "displayName": "Table", + "bottomRow": 10, + "columnWidthMap": {}, + "parentRowSpace": 10, + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "primaryColumns": { + "Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0, + "width": 150, + "originalId": "Name", + "id": "Name", + "alias": "Name", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Company": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1, + "width": 150, + "originalId": "Company", + "id": "Company", + "alias": "Company", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Company", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2, + "width": 150, + "originalId": "Title", + "id": "Title", + "alias": "Title", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Title", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Phone_number": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3, + "width": 150, + "originalId": "Phone number", + "id": "Phone_number", + "alias": "Phone number", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone number", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4, + "width": 150, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Registration_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5, + "width": 150, + "originalId": "Registration date", + "id": "Registration_date", + "alias": "Registration date", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "date", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Registration date", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + } + }, + "key": "o2lva12nb7", + "canFreezeColumn": true, + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "10avv5rorz", + "tableData": [ + { + "Name": "John Doe", + "Company": "TechCorp", + "Title": "Software Engineer", + "Phone number": "(555) 123-4567", + "Email": "john.doe@techcorp.com", + "Registration date": "2023-01-15" + }, + { + "Name": "Jane Smith", + "Company": "Innovate Ltd", + "Title": "Project Manager", + "Phone number": "(555) 234-5678", + "Email": "jane.smith@innovatelt.com", + "Registration date": "2023-02-20" + }, + { + "Name": "Alice Johnson", + "Company": "Web Solutions", + "Title": "UX Designer", + "Phone number": "(555) 345-6789", + "Email": "alice.johnson@websolutions.com", + "Registration date": "2023-03-10" + }, + { + "Name": "Bob Brown", + "Company": "BuildIt", + "Title": "Construction Manager", + "Phone number": "(555) 456-7890", + "Email": "bob.brown@buildit.com", + "Registration date": "2023-04-05" + }, + { + "Name": "Charlie Davis", + "Company": "FinTech Inc", + "Title": "Financial Analyst", + "Phone number": "(555) 567-8901", + "Email": "charlie.davis@fintechinc.com", + "Registration date": "2023-05-12" + }, + { + "Name": "Dana Lee", + "Company": "HealthFirst", + "Title": "Nurse Practitioner", + "Phone number": "(555) 678-9012", + "Email": "dana.lee@healthfirst.com", + "Registration date": "2023-06-01" + }, + { + "Name": "Evan Martinez", + "Company": "AutoPro", + "Title": "Mechanical Engineer", + "Phone number": "(555) 789-0123", + "Email": "evan.martinez@autopro.com", + "Registration date": "2023-07-19" + }, + { + "Name": "Fiona Green", + "Company": "EduFuture", + "Title": "Curriculum Developer", + "Phone number": "(555) 890-1234", + "Email": "fiona.green@edufuture.com", + "Registration date": "2023-08-23" + }, + { + "Name": "George Harris", + "Company": "MarketMasters", + "Title": "Marketing Director", + "Phone number": "(555) 901-2345", + "Email": "george.harris@marketmasters.com", + "Registration date": "2023-09-07" + }, + { + "Name": "Hannah Wright", + "Company": "LegalEagle", + "Title": "Attorney", + "Phone number": "(555) 012-3456", + "Email": "hannah.wright@legaleagle.com", + "Registration date": "2023-10-15" + }, + { + "Name": "Ian Walker", + "Company": "HomeGoods", + "Title": "Retail Manager", + "Phone number": "(555) 123-4567", + "Email": "ian.walker@homegoods.com", + "Registration date": "2023-11-22" + }, + { + "Name": "Julia King", + "Company": "TravelWise", + "Title": "Travel Agent", + "Phone number": "(555) 234-5678", + "Email": "julia.king@travelwise.com", + "Registration date": "2023-12-30" + }, + { + "Name": "Kevin Scott", + "Company": "CleanEnergy", + "Title": "Environmental Scientist", + "Phone number": "(555) 345-6789", + "Email": "kevin.scott@cleanenergy.com", + "Registration date": "2024-01-08" + }, + { + "Name": "Laura Baker", + "Company": "MediaMinds", + "Title": "Content Strategist", + "Phone number": "(555) 456-7890", + "Email": "laura.baker@mediaminds.com", + "Registration date": "2024-02-18" + }, + { + "Name": "Michael Young", + "Company": "CyberSecure", + "Title": "Cybersecurity Specialist", + "Phone number": "(555) 567-8901", + "Email": "michael.young@cybersecure.com", + "Registration date": "2024-03-29" + }, + { + "Name": "Nina Patel", + "Company": "AgriTech", + "Title": "Agricultural Engineer", + "Phone number": "(555) 678-9012", + "Email": "nina.patel@agritech.com", + "Registration date": "2024-04-10" + } + ], + "label": "Data", + "searchKey": "", + "parentId": "no97yl4fal", + "buttonLabel": "Action", + "renderMode": "CANVAS", + "mobileTopRow": 0, + "horizontalAlignment": "start", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "isVisiblePagination": true, + "buttonVariant": "filled", + "verticalAlignment": "center" + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "xn7kggh7c1", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "no97yl4fal", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "b839m7j5w5", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "rxvsyjbue7", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "10avv5rorz", + "widgetType": "WDS_TABLE_WIDGET" + } + ], + "allowedWidgetTypes": [], + "maxChildLimit": 1 + } + ], + "layoutId": "mo2tfiuia3", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone5Copy1", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "isVisibleDownload": true, + "topRow": 0, + "isSortable": true, + "pageSize": "1", + "type": "WDS_TABLE_WIDGET", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [], + "needsHeightForContent": true, + "leftColumn": 0, + "delimiter": ",", + "defaultSelectedRowIndex": 0, + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisibleFilters": true, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2, + "totalRecordsCount": 0, + "tags": [ + "Suggested", + "Display" + ], + "isLoading": false, + "columnUpdatedAt": 1719985967344, + "defaultSelectedRowIndices": [ + 0 + ], + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Table1Copy5Copy2", + "defaultPageSize": 0, + "columnOrder": [ + "Name", + "Company", + "Title", + "Phone_number", + "Email", + "Registration_date" + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + } + ], + "buttonColor": "accent", + "displayName": "Table", + "bottomRow": 10, + "columnWidthMap": {}, + "parentRowSpace": 10, + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "primaryColumns": { + "Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0, + "width": 150, + "originalId": "Name", + "id": "Name", + "alias": "Name", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Company": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1, + "width": 150, + "originalId": "Company", + "id": "Company", + "alias": "Company", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Company", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2, + "width": 150, + "originalId": "Title", + "id": "Title", + "alias": "Title", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Title", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Phone_number": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3, + "width": 150, + "originalId": "Phone number", + "id": "Phone_number", + "alias": "Phone number", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone number", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4, + "width": 150, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Registration_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5, + "width": 150, + "originalId": "Registration date", + "id": "Registration_date", + "alias": "Registration date", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "date", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Registration date", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + } + }, + "key": "o2lva12nb7", + "canFreezeColumn": true, + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "y8g36m8kw2", + "tableData": [ + { + "Name": "John Doe", + "Company": "TechCorp", + "Title": "Software Engineer", + "Phone number": "(555) 123-4567", + "Email": "john.doe@techcorp.com", + "Registration date": "2023-01-15" + }, + { + "Name": "Jane Smith", + "Company": "Innovate Ltd", + "Title": "Project Manager", + "Phone number": "(555) 234-5678", + "Email": "jane.smith@innovatelt.com", + "Registration date": "2023-02-20" + }, + { + "Name": "Alice Johnson", + "Company": "Web Solutions", + "Title": "UX Designer", + "Phone number": "(555) 345-6789", + "Email": "alice.johnson@websolutions.com", + "Registration date": "2023-03-10" + }, + { + "Name": "Bob Brown", + "Company": "BuildIt", + "Title": "Construction Manager", + "Phone number": "(555) 456-7890", + "Email": "bob.brown@buildit.com", + "Registration date": "2023-04-05" + }, + { + "Name": "Charlie Davis", + "Company": "FinTech Inc", + "Title": "Financial Analyst", + "Phone number": "(555) 567-8901", + "Email": "charlie.davis@fintechinc.com", + "Registration date": "2023-05-12" + }, + { + "Name": "Dana Lee", + "Company": "HealthFirst", + "Title": "Nurse Practitioner", + "Phone number": "(555) 678-9012", + "Email": "dana.lee@healthfirst.com", + "Registration date": "2023-06-01" + }, + { + "Name": "Evan Martinez", + "Company": "AutoPro", + "Title": "Mechanical Engineer", + "Phone number": "(555) 789-0123", + "Email": "evan.martinez@autopro.com", + "Registration date": "2023-07-19" + }, + { + "Name": "Fiona Green", + "Company": "EduFuture", + "Title": "Curriculum Developer", + "Phone number": "(555) 890-1234", + "Email": "fiona.green@edufuture.com", + "Registration date": "2023-08-23" + }, + { + "Name": "George Harris", + "Company": "MarketMasters", + "Title": "Marketing Director", + "Phone number": "(555) 901-2345", + "Email": "george.harris@marketmasters.com", + "Registration date": "2023-09-07" + }, + { + "Name": "Hannah Wright", + "Company": "LegalEagle", + "Title": "Attorney", + "Phone number": "(555) 012-3456", + "Email": "hannah.wright@legaleagle.com", + "Registration date": "2023-10-15" + }, + { + "Name": "Ian Walker", + "Company": "HomeGoods", + "Title": "Retail Manager", + "Phone number": "(555) 123-4567", + "Email": "ian.walker@homegoods.com", + "Registration date": "2023-11-22" + }, + { + "Name": "Julia King", + "Company": "TravelWise", + "Title": "Travel Agent", + "Phone number": "(555) 234-5678", + "Email": "julia.king@travelwise.com", + "Registration date": "2023-12-30" + }, + { + "Name": "Kevin Scott", + "Company": "CleanEnergy", + "Title": "Environmental Scientist", + "Phone number": "(555) 345-6789", + "Email": "kevin.scott@cleanenergy.com", + "Registration date": "2024-01-08" + }, + { + "Name": "Laura Baker", + "Company": "MediaMinds", + "Title": "Content Strategist", + "Phone number": "(555) 456-7890", + "Email": "laura.baker@mediaminds.com", + "Registration date": "2024-02-18" + }, + { + "Name": "Michael Young", + "Company": "CyberSecure", + "Title": "Cybersecurity Specialist", + "Phone number": "(555) 567-8901", + "Email": "michael.young@cybersecure.com", + "Registration date": "2024-03-29" + }, + { + "Name": "Nina Patel", + "Company": "AgriTech", + "Title": "Agricultural Engineer", + "Phone number": "(555) 678-9012", + "Email": "nina.patel@agritech.com", + "Registration date": "2024-04-10" + } + ], + "label": "Data", + "searchKey": "", + "parentId": "xz0fthgwj5", + "buttonLabel": "Action", + "renderMode": "CANVAS", + "mobileTopRow": 0, + "horizontalAlignment": "start", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "isVisiblePagination": true, + "buttonVariant": "filled", + "verticalAlignment": "center" + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "xn7kggh7c1", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "xz0fthgwj5", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "b839m7j5w5", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "9s3f8kgiqj", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "y8g36m8kw2", + "widgetType": "WDS_TABLE_WIDGET" + } + ], + "allowedWidgetTypes": [], + "maxChildLimit": 1 + } + ], + "layoutId": "vglk9vr7ub", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone6Copy1", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "isVisibleDownload": true, + "topRow": 0, + "isSortable": true, + "pageSize": "1", + "type": "WDS_TABLE_WIDGET", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [], + "needsHeightForContent": true, + "leftColumn": 0, + "delimiter": ",", + "defaultSelectedRowIndex": 0, + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisibleFilters": true, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2, + "totalRecordsCount": 0, + "tags": [ + "Suggested", + "Display" + ], + "isLoading": false, + "columnUpdatedAt": 1719985967344, + "defaultSelectedRowIndices": [ + 0 + ], + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Table1Copy5CopyCopy2", + "defaultPageSize": 0, + "columnOrder": [ + "Name", + "Company", + "Title", + "Phone_number", + "Email", + "Registration_date" + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + } + ], + "buttonColor": "accent", + "displayName": "Table", + "bottomRow": 10, + "columnWidthMap": {}, + "parentRowSpace": 10, + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "primaryColumns": { + "Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0, + "width": 150, + "originalId": "Name", + "id": "Name", + "alias": "Name", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Company": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1, + "width": 150, + "originalId": "Company", + "id": "Company", + "alias": "Company", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Company", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2, + "width": 150, + "originalId": "Title", + "id": "Title", + "alias": "Title", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Title", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Phone_number": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3, + "width": 150, + "originalId": "Phone number", + "id": "Phone_number", + "alias": "Phone number", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone number", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4, + "width": 150, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Registration_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5, + "width": 150, + "originalId": "Registration date", + "id": "Registration_date", + "alias": "Registration date", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "date", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Registration date", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + } + }, + "key": "o2lva12nb7", + "canFreezeColumn": true, + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "auxd9v0yfi", + "tableData": [ + { + "Name": "John Doe", + "Company": "TechCorp", + "Title": "Software Engineer", + "Phone number": "(555) 123-4567", + "Email": "john.doe@techcorp.com", + "Registration date": "2023-01-15" + }, + { + "Name": "Jane Smith", + "Company": "Innovate Ltd", + "Title": "Project Manager", + "Phone number": "(555) 234-5678", + "Email": "jane.smith@innovatelt.com", + "Registration date": "2023-02-20" + }, + { + "Name": "Alice Johnson", + "Company": "Web Solutions", + "Title": "UX Designer", + "Phone number": "(555) 345-6789", + "Email": "alice.johnson@websolutions.com", + "Registration date": "2023-03-10" + }, + { + "Name": "Bob Brown", + "Company": "BuildIt", + "Title": "Construction Manager", + "Phone number": "(555) 456-7890", + "Email": "bob.brown@buildit.com", + "Registration date": "2023-04-05" + }, + { + "Name": "Charlie Davis", + "Company": "FinTech Inc", + "Title": "Financial Analyst", + "Phone number": "(555) 567-8901", + "Email": "charlie.davis@fintechinc.com", + "Registration date": "2023-05-12" + }, + { + "Name": "Dana Lee", + "Company": "HealthFirst", + "Title": "Nurse Practitioner", + "Phone number": "(555) 678-9012", + "Email": "dana.lee@healthfirst.com", + "Registration date": "2023-06-01" + }, + { + "Name": "Evan Martinez", + "Company": "AutoPro", + "Title": "Mechanical Engineer", + "Phone number": "(555) 789-0123", + "Email": "evan.martinez@autopro.com", + "Registration date": "2023-07-19" + }, + { + "Name": "Fiona Green", + "Company": "EduFuture", + "Title": "Curriculum Developer", + "Phone number": "(555) 890-1234", + "Email": "fiona.green@edufuture.com", + "Registration date": "2023-08-23" + }, + { + "Name": "George Harris", + "Company": "MarketMasters", + "Title": "Marketing Director", + "Phone number": "(555) 901-2345", + "Email": "george.harris@marketmasters.com", + "Registration date": "2023-09-07" + }, + { + "Name": "Hannah Wright", + "Company": "LegalEagle", + "Title": "Attorney", + "Phone number": "(555) 012-3456", + "Email": "hannah.wright@legaleagle.com", + "Registration date": "2023-10-15" + }, + { + "Name": "Ian Walker", + "Company": "HomeGoods", + "Title": "Retail Manager", + "Phone number": "(555) 123-4567", + "Email": "ian.walker@homegoods.com", + "Registration date": "2023-11-22" + }, + { + "Name": "Julia King", + "Company": "TravelWise", + "Title": "Travel Agent", + "Phone number": "(555) 234-5678", + "Email": "julia.king@travelwise.com", + "Registration date": "2023-12-30" + }, + { + "Name": "Kevin Scott", + "Company": "CleanEnergy", + "Title": "Environmental Scientist", + "Phone number": "(555) 345-6789", + "Email": "kevin.scott@cleanenergy.com", + "Registration date": "2024-01-08" + }, + { + "Name": "Laura Baker", + "Company": "MediaMinds", + "Title": "Content Strategist", + "Phone number": "(555) 456-7890", + "Email": "laura.baker@mediaminds.com", + "Registration date": "2024-02-18" + }, + { + "Name": "Michael Young", + "Company": "CyberSecure", + "Title": "Cybersecurity Specialist", + "Phone number": "(555) 567-8901", + "Email": "michael.young@cybersecure.com", + "Registration date": "2024-03-29" + }, + { + "Name": "Nina Patel", + "Company": "AgriTech", + "Title": "Agricultural Engineer", + "Phone number": "(555) 678-9012", + "Email": "nina.patel@agritech.com", + "Registration date": "2024-04-10" + } + ], + "label": "Data", + "searchKey": "", + "parentId": "xir15yb3lm", + "buttonLabel": "Action", + "renderMode": "CANVAS", + "mobileTopRow": 0, + "horizontalAlignment": "start", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "isVisiblePagination": true, + "buttonVariant": "filled", + "verticalAlignment": "center" + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "xn7kggh7c1", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "xir15yb3lm", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "b839m7j5w5", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "6alxfuby93", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "auxd9v0yfi", + "widgetType": "WDS_TABLE_WIDGET" + } + ], + "allowedWidgetTypes": [], + "maxChildLimit": 1 + } + ], + "layoutId": "juvqlnde9f", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone7Copy", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "isVisibleDownload": true, + "topRow": 0, + "isSortable": true, + "pageSize": "1", + "type": "WDS_TABLE_WIDGET", + "inlineEditingSaveOption": "ROW_LEVEL", + "animateLoading": true, + "dynamicBindingPathList": [], + "needsHeightForContent": true, + "leftColumn": 0, + "delimiter": ",", + "defaultSelectedRowIndex": 0, + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisibleFilters": true, + "isVisible": true, + "enableClientSideSearch": true, + "version": 2, + "totalRecordsCount": 0, + "tags": [ + "Suggested", + "Display" + ], + "isLoading": false, + "columnUpdatedAt": 1719985967344, + "defaultSelectedRowIndices": [ + 0 + ], + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "Table1Copy5CopyCopyCopy", + "defaultPageSize": 0, + "columnOrder": [ + "Name", + "Company", + "Title", + "Phone_number", + "Email", + "Registration_date" + ], + "dynamicPropertyPathList": [ + { + "key": "tableData" + } + ], + "buttonColor": "accent", + "displayName": "Table", + "bottomRow": 10, + "columnWidthMap": {}, + "parentRowSpace": 10, + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "primaryColumns": { + "Name": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 0, + "width": 150, + "originalId": "Name", + "id": "Name", + "alias": "Name", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Name", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Company": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 1, + "width": 150, + "originalId": "Company", + "id": "Company", + "alias": "Company", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Company", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Title": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 2, + "width": 150, + "originalId": "Title", + "id": "Title", + "alias": "Title", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Title", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Phone_number": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 3, + "width": 150, + "originalId": "Phone number", + "id": "Phone_number", + "alias": "Phone number", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Phone number", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Email": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 4, + "width": 150, + "originalId": "Email", + "id": "Email", + "alias": "Email", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "text", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Email", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + }, + "Registration_date": { + "allowCellWrapping": false, + "allowSameOptionsInNewRow": true, + "index": 5, + "width": 150, + "originalId": "Registration date", + "id": "Registration_date", + "alias": "Registration date", + "horizontalAlignment": "start", + "verticalAlignment": "center", + "columnType": "date", + "textColor": "#231F20", + "textSize": "0.875rem", + "fontStyle": "REGULAR", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellEditable": false, + "isEditable": false, + "isCellVisible": true, + "isDerived": false, + "label": "Registration date", + "isSaveVisible": true, + "isDiscardVisible": true, + "sticky": "", + "validation": {}, + "currencyCode": "USD", + "decimals": 0, + "thousandSeparator": true, + "notation": "standard", + "buttonColor": "accent" + } + }, + "key": "o2lva12nb7", + "canFreezeColumn": true, + "isDeprecated": false, + "rightColumn": 64, + "widgetId": "9eaqsrvcc1", + "tableData": [ + { + "Name": "John Doe", + "Company": "TechCorp", + "Title": "Software Engineer", + "Phone number": "(555) 123-4567", + "Email": "john.doe@techcorp.com", + "Registration date": "2023-01-15" + }, + { + "Name": "Jane Smith", + "Company": "Innovate Ltd", + "Title": "Project Manager", + "Phone number": "(555) 234-5678", + "Email": "jane.smith@innovatelt.com", + "Registration date": "2023-02-20" + }, + { + "Name": "Alice Johnson", + "Company": "Web Solutions", + "Title": "UX Designer", + "Phone number": "(555) 345-6789", + "Email": "alice.johnson@websolutions.com", + "Registration date": "2023-03-10" + }, + { + "Name": "Bob Brown", + "Company": "BuildIt", + "Title": "Construction Manager", + "Phone number": "(555) 456-7890", + "Email": "bob.brown@buildit.com", + "Registration date": "2023-04-05" + }, + { + "Name": "Charlie Davis", + "Company": "FinTech Inc", + "Title": "Financial Analyst", + "Phone number": "(555) 567-8901", + "Email": "charlie.davis@fintechinc.com", + "Registration date": "2023-05-12" + }, + { + "Name": "Dana Lee", + "Company": "HealthFirst", + "Title": "Nurse Practitioner", + "Phone number": "(555) 678-9012", + "Email": "dana.lee@healthfirst.com", + "Registration date": "2023-06-01" + }, + { + "Name": "Evan Martinez", + "Company": "AutoPro", + "Title": "Mechanical Engineer", + "Phone number": "(555) 789-0123", + "Email": "evan.martinez@autopro.com", + "Registration date": "2023-07-19" + }, + { + "Name": "Fiona Green", + "Company": "EduFuture", + "Title": "Curriculum Developer", + "Phone number": "(555) 890-1234", + "Email": "fiona.green@edufuture.com", + "Registration date": "2023-08-23" + }, + { + "Name": "George Harris", + "Company": "MarketMasters", + "Title": "Marketing Director", + "Phone number": "(555) 901-2345", + "Email": "george.harris@marketmasters.com", + "Registration date": "2023-09-07" + }, + { + "Name": "Hannah Wright", + "Company": "LegalEagle", + "Title": "Attorney", + "Phone number": "(555) 012-3456", + "Email": "hannah.wright@legaleagle.com", + "Registration date": "2023-10-15" + }, + { + "Name": "Ian Walker", + "Company": "HomeGoods", + "Title": "Retail Manager", + "Phone number": "(555) 123-4567", + "Email": "ian.walker@homegoods.com", + "Registration date": "2023-11-22" + }, + { + "Name": "Julia King", + "Company": "TravelWise", + "Title": "Travel Agent", + "Phone number": "(555) 234-5678", + "Email": "julia.king@travelwise.com", + "Registration date": "2023-12-30" + }, + { + "Name": "Kevin Scott", + "Company": "CleanEnergy", + "Title": "Environmental Scientist", + "Phone number": "(555) 345-6789", + "Email": "kevin.scott@cleanenergy.com", + "Registration date": "2024-01-08" + }, + { + "Name": "Laura Baker", + "Company": "MediaMinds", + "Title": "Content Strategist", + "Phone number": "(555) 456-7890", + "Email": "laura.baker@mediaminds.com", + "Registration date": "2024-02-18" + }, + { + "Name": "Michael Young", + "Company": "CyberSecure", + "Title": "Cybersecurity Specialist", + "Phone number": "(555) 567-8901", + "Email": "michael.young@cybersecure.com", + "Registration date": "2024-03-29" + }, + { + "Name": "Nina Patel", + "Company": "AgriTech", + "Title": "Agricultural Engineer", + "Phone number": "(555) 678-9012", + "Email": "nina.patel@agritech.com", + "Registration date": "2024-04-10" + } + ], + "label": "Data", + "searchKey": "", + "parentId": "w0qjobc8nl", + "buttonLabel": "Action", + "renderMode": "CANVAS", + "mobileTopRow": 0, + "horizontalAlignment": "start", + "isVisibleSearch": true, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "isVisiblePagination": true, + "buttonVariant": "filled", + "verticalAlignment": "center" + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "xn7kggh7c1", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "w0qjobc8nl", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "b839m7j5w5", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "zpo0xv2xda", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "9eaqsrvcc1", + "widgetType": "WDS_TABLE_WIDGET" + } + ], + "allowedWidgetTypes": [], + "maxChildLimit": 1 + } + ], + "layoutId": "1tcufflo7c", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "ck9px4n4my", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "b839m7j5w5", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 4, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "no97yl4fal", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "xz0fthgwj5", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "xir15yb3lm", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "w0qjobc8nl", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "8k3vayxda9", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "no97yl4fal": 3, + "xz0fthgwj5": 3, + "xir15yb3lm": 3, + "w0qjobc8nl": 3 + } + } + ] + } +} \ No newline at end of file diff --git a/app/client/cypress/fixtures/anvilZoneSectionWidget.json b/app/client/cypress/fixtures/anvilZoneSectionWidget.json new file mode 100644 index 000000000000..d2588fc13de9 --- /dev/null +++ b/app/client/cypress/fixtures/anvilZoneSectionWidget.json @@ -0,0 +1,2478 @@ +{ + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 4896, + "snapColumns": 64, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0, + "bottomRow": 380, + "containerStyle": "none", + "snapRows": 124, + "parentRowSpace": 1, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 89, + "minHeight": 1292, + "layout": [ + { + "layoutId": "182gni631i", + "layoutType": "ALIGNED_LAYOUT_COLUMN", + "layout": [ + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "wj1g4xosd8", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "i8jw4dp7eu", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "5d8ga1ugf1", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "e3dd566ae7", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "81bxz1tl93", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "85x81rk5gp", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "av8wsrs3go", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "pg0s5xu4ct", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "7gwd3o4zcl", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "vr1oegdif5", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "ejc0vozxvn", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "6pi63i0790", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "wqbtdxv34e", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "vfmk5jnjte", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "i8iqzz1ukk", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "gsupqm0eef", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + }, + { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [ + { + "alignment": "start", + "widgetId": "nxukua85e3", + "widgetType": "SECTION_WIDGET" + } + ], + "layoutId": "d0dp1x33je", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + ], + "layoutStyle": { + "border": "none", + "height": "100%", + "padding": "spacing-4", + "gap": "spacing-4" + }, + "isDropTarget": true, + "isPermanent": true, + "childTemplate": { + "insertChild": true, + "isDropTarget": false, + "isPermanent": false, + "layout": [], + "layoutId": "", + "layoutType": "WIDGET_ROW", + "maxChildLimit": 1 + } + } + ], + "dynamicTriggerPathList": [], + "parentColumnSpace": 1, + "dynamicBindingPathList": [], + "leftColumn": 0, + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone1", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "oyo777xtyn", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "wj1g4xosd8", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "r544bb8l9s", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "itsfprx8g5", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "wj1g4xosd8", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "uplemke5eo", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "1r5wovsfw1", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "wj1g4xosd8", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "9g2wpnu9wn", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy1", + "flexGrow": 3, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "j82f3gi411", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "wj1g4xosd8", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "x7d6r5ezm8", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "pztpgcr4s0", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "wj1g4xosd8", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 4, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "oyo777xtyn", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "itsfprx8g5", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "j82f3gi411", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "1r5wovsfw1", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "x1u1no7fve", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "oyo777xtyn": 3, + "itsfprx8g5": 3, + "1r5wovsfw1": 3, + "j82f3gi411": 3 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section2", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy2", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "mhsko7tb2r", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "5d8ga1ugf1", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "gte79vmkb3", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2Copy3", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "18zypnzawc", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "5d8ga1ugf1", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "br80kdqugv", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "cxvgeonbcg", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "5d8ga1ugf1", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "m0itf47yxw", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "pztpgcr4s0", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "5d8ga1ugf1", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 3, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "mhsko7tb2r", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "cxvgeonbcg", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "18zypnzawc", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "xsilc8fw89", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "mhsko7tb2r": 4, + "cxvgeonbcg": 4, + "18zypnzawc": 4 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section3", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy1", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "3lgzp1142x", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "81bxz1tl93", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "ehjf5vniw9", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy2", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "03fijh4du6", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "81bxz1tl93", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "mdcepwqs3x", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "pztpgcr4s0", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "81bxz1tl93", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "3lgzp1142x", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "03fijh4du6", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "wvy4oijta8", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "3lgzp1142x": 6, + "03fijh4du6": 6, + "vnsklwekep": 4, + "ril3lsmnjy": 3 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section4", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy3", + "flexGrow": 12, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "5zmaf8ojv7", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "av8wsrs3go", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "vaegtxko1o", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "pztpgcr4s0", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "av8wsrs3go", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 1, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "5zmaf8ojv7", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "svp98tte37", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "5zmaf8ojv7": 12 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section5", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy4", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "3hq8zdwdyp", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "7gwd3o4zcl", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "htw2g9mx0z", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy5", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": false, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "7a5d5yw8kq", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "7gwd3o4zcl", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "ie0r4qp4ma", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "key": "pztpgcr4s0", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "7gwd3o4zcl", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "3hq8zdwdyp", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "7a5d5yw8kq", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "o45lq0q16b", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "3hq8zdwdyp": 6, + "7a5d5yw8kq": 6 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section5Copy", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy4Copy", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "r4uzpl3cfc", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "ejc0vozxvn", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "5t3d9mbrtx", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy5Copy", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": false, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "ook61vy3mp", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "ejc0vozxvn", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "7a9k8h2p05", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "pztpgcr4s0", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "ejc0vozxvn", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "r4uzpl3cfc", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "ook61vy3mp", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "or3a2pbsi4", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "r4uzpl3cfc": 6, + "ook61vy3mp": 6 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section5Copy1", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy4Copy1", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": false, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "fuwvi26f6q", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "wqbtdxv34e", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "g0vo2eztck", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy5Copy1", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": false, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "9qx3bsahnk", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "wqbtdxv34e", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "ekh3u7yrtc", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "key": "pztpgcr4s0", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "wqbtdxv34e", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "fuwvi26f6q", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "9qx3bsahnk", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "gpv2nlwart", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "fuwvi26f6q": 6, + "9qx3bsahnk": 6 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section6", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone3", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [ + { + "needsErrorInfo": false, + "mobileBottomRow": 10, + "widgetName": "StatsWidget1", + "isCanvas": false, + "displayName": "Stats", + "searchTags": [ + "statbox" + ], + "topRow": 0, + "bottomRow": 10, + "caption": "This week", + "parentRowSpace": 10, + "valueChangeColor": "positive", + "type": "WDS_STATS_WIDGET", + "hideCard": false, + "valueColor": "neutral", + "mobileRightColumn": 64, + "animateLoading": true, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [], + "valueChange": "+50%", + "value": "42", + "elevatedBackground": true, + "key": "jie36fqpbh", + "isDeprecated": false, + "rightColumn": 64, + "iconName": "shopping-bag", + "widgetId": "4s4194djet", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-widget-selection", + "focusBGCSSVar": "--on-canvas-ui-widget-focus", + "selectionColorCSSVar": "--on-canvas-ui-widget-focus", + "focusColorCSSVar": "--on-canvas-ui-widget-selection", + "disableParentSelection": false + }, + "isVisible": true, + "label": "Active Users", + "version": 1, + "parentId": "ws1fy5x8pc", + "tags": [ + "Display" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "responsiveBehavior": "fill", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "ws1fy5x8pc", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "i8iqzz1ukk", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "insertChild": true, + "layoutId": "wsxeu9826z", + "layoutType": "ALIGNED_WIDGET_ROW", + "layout": [ + { + "alignment": "start", + "widgetId": "4s4194djet", + "widgetType": "WDS_STATS_WIDGET" + } + ], + "allowedWidgetTypes": [ + "SMALL_WIDGETS" + ], + "maxChildLimit": 0 + } + ], + "layoutId": "pta7uc0ojl", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy4Copy2", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": false, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "213297990l", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "i8iqzz1ukk", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "1o848idjkq", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy5Copy2", + "flexGrow": 4, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "bavuhv9cyv", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "i8iqzz1ukk", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "1ukjzlwgoo", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": true, + "key": "pztpgcr4s0", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "i8iqzz1ukk", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 3, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "ws1fy5x8pc", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "213297990l", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "bavuhv9cyv", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "ke7frdvrpx", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "ws1fy5x8pc": 4, + "213297990l": 4, + "bavuhv9cyv": 4 + } + }, + { + "needsErrorInfo": false, + "boxShadow": "NONE", + "mobileBottomRow": 10, + "widgetName": "Section7", + "isCanvas": true, + "displayName": "Section", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "SECTION_WIDGET", + "hideCard": true, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [], + "children": [ + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone4", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "xo570iko53", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": true, + "version": 1, + "parentId": "nxukua85e3", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "9vtz1i2c1n", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + }, + { + "needsErrorInfo": false, + "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", + "mobileBottomRow": 10, + "widgetName": "Zone2CopyCopy5Copy3", + "flexGrow": 6, + "isCanvas": true, + "displayName": "Zone", + "searchTags": [ + "div", + "parent", + "group" + ], + "topRow": 0, + "bottomRow": 10, + "parentRowSpace": 10, + "type": "ZONE_WIDGET", + "hideCard": false, + "mobileRightColumn": 64, + "parentColumnSpace": 1, + "dynamicTriggerPathList": [], + "leftColumn": 0, + "dynamicBindingPathList": [ + { + "key": "borderRadius" + }, + { + "key": "boxShadow" + } + ], + "children": [], + "elevatedBackground": true, + "flexVerticalAlignment": "stretch", + "key": "7ybx4xx179", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "sg7hq0jakj", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-zone-selection", + "focusBGCSSVar": "--on-canvas-ui-zone-focus", + "selectionColorCSSVar": "--on-canvas-ui-zone-focus", + "focusColorCSSVar": "--on-canvas-ui-zone-selection", + "disableParentSelection": false + }, + "isVisible": false, + "version": 1, + "parentId": "nxukua85e3", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [], + "layoutId": "d86jrb8qvz", + "layoutStyle": { + "border": "none", + "height": "100%" + }, + "layoutType": "ZONE" + } + ], + "responsiveBehavior": "fill", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "mobileLeftColumn": 0 + } + ], + "elevatedBackground": false, + "key": "pztpgcr4s0", + "isDeprecated": false, + "rightColumn": 64, + "detachFromLayout": false, + "widgetId": "nxukua85e3", + "onCanvasUI": { + "selectionBGCSSVar": "--on-canvas-ui-section-selection", + "focusBGCSSVar": "--on-canvas-ui-section-focus", + "selectionColorCSSVar": "--on-canvas-ui-section-focus", + "focusColorCSSVar": "--on-canvas-ui-section-selection", + "disableParentSelection": true + }, + "zoneCount": 2, + "isVisible": true, + "version": 1, + "parentId": "0", + "tags": [ + "Layout" + ], + "renderMode": "CANVAS", + "isLoading": false, + "mobileTopRow": 0, + "layout": [ + { + "isContainer": true, + "isDropTarget": true, + "isPermanent": true, + "layout": [ + { + "alignment": "start", + "widgetId": "xo570iko53", + "widgetType": "ZONE_WIDGET" + }, + { + "alignment": "start", + "widgetId": "sg7hq0jakj", + "widgetType": "ZONE_WIDGET" + } + ], + "layoutId": "9kdemg5jss", + "layoutStyle": { + "border": "none" + }, + "layoutType": "SECTION", + "maxChildLimit": 4 + } + ], + "responsiveBehavior": "fill", + "mobileLeftColumn": 0, + "spaceDistributed": { + "xo570iko53": 6, + "sg7hq0jakj": 6 + } + } + ] + } +} \ No newline at end of file diff --git a/app/client/cypress/plugins/index.js b/app/client/cypress/plugins/index.js index ccd03ec796ea..705c200c175b 100644 --- a/app/client/cypress/plugins/index.js +++ b/app/client/cypress/plugins/index.js @@ -81,6 +81,11 @@ module.exports = async (on, config) => { return launchOptions; } + if (browser.name === "chromium") { + launchOptions.args.push("--window-size=1400,1100"); + return launchOptions; + } + if (browser.name === "electron") { // && browser.isHeadless) { launchOptions.preferences.fullscreen = true; @@ -174,7 +179,7 @@ module.exports = async (on, config) => { }, /* - Change video source for for camera & code scanner + Change video source for for camera & code scanner */ changeVideoSource(videoSource) { console.log("TASK - Changing video source to", videoSource); diff --git a/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetCanvas.snap.png index 42d610b3d5c8..0d2e6f5d4d56 100644 Binary files a/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetCanvas.snap.png and b/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetCanvasDark.snap.png index 28aa3cd946a8..4fd3fa528260 100644 Binary files a/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetCanvasDark.snap.png and b/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeployipad-2.snap.png new file mode 100644 index 000000000000..2d613015b579 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeployiphone-6.snap.png new file mode 100644 index 000000000000..3d1b99dc7796 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeploymacbook-13.snap.png new file mode 100644 index 000000000000..b030586f096d Binary files /dev/null and b/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetPreview.snap.png new file mode 100644 index 000000000000..48fa4f909bf9 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetCanvas.snap.png new file mode 100644 index 000000000000..db241d821bbb Binary files /dev/null and b/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetCanvasDark.snap.png new file mode 100644 index 000000000000..d15ce1bbcfeb Binary files /dev/null and b/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeployipad-2.snap.png new file mode 100644 index 000000000000..e4488853b979 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeployiphone-6.snap.png new file mode 100644 index 000000000000..5e97ab55d458 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeploymacbook-13.snap.png new file mode 100644 index 000000000000..79536fca5c5a Binary files /dev/null and b/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetPreview.snap.png new file mode 100644 index 000000000000..398f84647c96 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetCanvas.snap.png new file mode 100644 index 000000000000..e7f5bd257e44 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetCanvasDark.snap.png new file mode 100644 index 000000000000..3c7145004836 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeployipad-2.snap.png new file mode 100644 index 000000000000..8320898e4867 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeployiphone-6.snap.png new file mode 100644 index 000000000000..97aba9e0c472 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeploymacbook-13.snap.png new file mode 100644 index 000000000000..c970cb163e08 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetPreview.snap.png new file mode 100644 index 000000000000..7e6e69d1b9ac Binary files /dev/null and b/app/client/cypress/snapshots/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetCanvas.snap.png index ae693881e3aa..de542202bf6c 100644 Binary files a/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetCanvas.snap.png and b/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetCanvasDark.snap.png index 05507c025865..4795b7a5101b 100644 Binary files a/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetCanvasDark.snap.png and b/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeployipad-2.snap.png index c2803ad7a062..7bd65f5cf49b 100644 Binary files a/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeployipad-2.snap.png and b/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeployiphone-6.snap.png index a94219d6a611..73042cf534fd 100644 Binary files a/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeployiphone-6.snap.png and b/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeploymacbook-13.snap.png index 6802284a27b7..6c950b656eb3 100644 Binary files a/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeploymacbook-13.snap.png and b/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetPreview.snap.png index 1dd5b886a8ef..886484266c12 100644 Binary files a/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetPreview.snap.png and b/app/client/cypress/snapshots/AnvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetCanvas.snap.png new file mode 100644 index 000000000000..f66ee9c16fa4 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetCanvasDark.snap.png new file mode 100644 index 000000000000..7e2e8a64dcba Binary files /dev/null and b/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeployipad-2.snap.png new file mode 100644 index 000000000000..93c904c7829f Binary files /dev/null and b/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeployiphone-6.snap.png new file mode 100644 index 000000000000..11f78a2bf539 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeploymacbook-13.snap.png new file mode 100644 index 000000000000..e6a532400eb8 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetPreview.snap.png new file mode 100644 index 000000000000..349d52c3e2f1 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetCanvas.snap.png index 1a43c36fb305..91776e85072b 100644 Binary files a/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetCanvas.snap.png and b/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetCanvasDark.snap.png index 78a744d390e1..a3a9a6c7ec48 100644 Binary files a/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetCanvasDark.snap.png and b/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeployipad-2.snap.png index cdbaaa92cd39..317a301a3e33 100644 Binary files a/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeployipad-2.snap.png and b/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeployiphone-6.snap.png index 0e52990ded45..525b8a1eb4b2 100644 Binary files a/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeployiphone-6.snap.png and b/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeploymacbook-13.snap.png index e4a3fe11cdf1..432ba7e046f1 100644 Binary files a/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeploymacbook-13.snap.png and b/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetPreview.snap.png index fefed47f0acc..dfc4b53914ac 100644 Binary files a/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetPreview.snap.png and b/app/client/cypress/snapshots/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetCanvas.snap.png index 91168b9d4751..4221df873e9b 100644 Binary files a/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetCanvas.snap.png and b/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetCanvasDark.snap.png index 00bafdd6e978..185c1d4ae4b8 100644 Binary files a/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetCanvasDark.snap.png and b/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeployipad-2.snap.png index 52c1ca4ddc98..af8328238139 100644 Binary files a/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeployipad-2.snap.png and b/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeployiphone-6.snap.png index 9d6c358efd41..17762cd68387 100644 Binary files a/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeployiphone-6.snap.png and b/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeploymacbook-13.snap.png index e94ec174647c..c0751049fbc4 100644 Binary files a/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeploymacbook-13.snap.png and b/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetPreview.snap.png index beb21ffd97af..37d8062a14d5 100644 Binary files a/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetPreview.snap.png and b/app/client/cypress/snapshots/AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetCanvas.snap.png index 5e05426430cc..8db986104bfa 100644 Binary files a/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetCanvas.snap.png and b/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetCanvasDark.snap.png index d6fa981a3e37..913044bd85ff 100644 Binary files a/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetCanvasDark.snap.png and b/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeployipad-2.snap.png index 0cfa6b6bdc80..18a8e856c1f6 100644 Binary files a/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeployipad-2.snap.png and b/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeployiphone-6.snap.png index 1bd6317f6141..681d83d0cc21 100644 Binary files a/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeployiphone-6.snap.png and b/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeploymacbook-13.snap.png index 2add656ba6a3..3adf6ce1e00b 100644 Binary files a/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeploymacbook-13.snap.png and b/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetPreview.snap.png index 6ea74747fa3b..aa24fbbe60c1 100644 Binary files a/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetPreview.snap.png and b/app/client/cypress/snapshots/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilModal_spec.ts/anvilModalLargeSize.snap.png b/app/client/cypress/snapshots/AnvilModal_spec.ts/anvilModalLargeSize.snap.png deleted file mode 100644 index f91964ccb85a..000000000000 Binary files a/app/client/cypress/snapshots/AnvilModal_spec.ts/anvilModalLargeSize.snap.png and /dev/null differ diff --git a/app/client/cypress/snapshots/AnvilModal_spec.ts/anvilModalMediumSize.snap.png b/app/client/cypress/snapshots/AnvilModal_spec.ts/anvilModalMediumSize.snap.png deleted file mode 100644 index af945bafb7f0..000000000000 Binary files a/app/client/cypress/snapshots/AnvilModal_spec.ts/anvilModalMediumSize.snap.png and /dev/null differ diff --git a/app/client/cypress/snapshots/AnvilModal_spec.ts/anvilModalSmallSize.snap.png b/app/client/cypress/snapshots/AnvilModal_spec.ts/anvilModalSmallSize.snap.png deleted file mode 100644 index 487c58b37a2e..000000000000 Binary files a/app/client/cypress/snapshots/AnvilModal_spec.ts/anvilModalSmallSize.snap.png and /dev/null differ diff --git a/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetCanvas.snap.png new file mode 100644 index 000000000000..ca77712bf132 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetCanvasDark.snap.png new file mode 100644 index 000000000000..65c6118a8535 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeployipad-2.snap.png new file mode 100644 index 000000000000..2e9d62e43325 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeployiphone-6.snap.png new file mode 100644 index 000000000000..bb49e155d87e Binary files /dev/null and b/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeploymacbook-13.snap.png new file mode 100644 index 000000000000..8de83833b203 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetPreview.snap.png new file mode 100644 index 000000000000..4a373b6111de Binary files /dev/null and b/app/client/cypress/snapshots/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetCanvas.snap.png index d9a743b8f028..80f930f00ab7 100644 Binary files a/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetCanvas.snap.png and b/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetCanvasDark.snap.png index a1304499475c..e5a60fd8ccd7 100644 Binary files a/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetCanvasDark.snap.png and b/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeployipad-2.snap.png index 1701840d26e2..1f02bcb5fac9 100644 Binary files a/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeployipad-2.snap.png and b/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeployiphone-6.snap.png index 74ff7b991a1f..3b1380b6071d 100644 Binary files a/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeployiphone-6.snap.png and b/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeploymacbook-13.snap.png index 619645312311..244eaed195d9 100644 Binary files a/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeploymacbook-13.snap.png and b/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetPreview.snap.png index 25fe7da192fa..a3d8c1b65525 100644 Binary files a/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetPreview.snap.png and b/app/client/cypress/snapshots/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetCanvas.snap.png new file mode 100644 index 000000000000..dc7cd9035b2e Binary files /dev/null and b/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetCanvasDark.snap.png new file mode 100644 index 000000000000..c244edef1fc4 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeployipad-2.snap.png new file mode 100644 index 000000000000..adf2e7737b3f Binary files /dev/null and b/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeployiphone-6.snap.png new file mode 100644 index 000000000000..b5ffb8b445cf Binary files /dev/null and b/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeploymacbook-13.snap.png new file mode 100644 index 000000000000..aeda9c99919b Binary files /dev/null and b/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetPreview.snap.png new file mode 100644 index 000000000000..1d30b7d5e769 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetCanvas.snap.png new file mode 100644 index 000000000000..37f3fc088610 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetCanvasDark.snap.png new file mode 100644 index 000000000000..32c180b0ad12 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeployipad-2.snap.png new file mode 100644 index 000000000000..1b17b5e85def Binary files /dev/null and b/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeployiphone-6.snap.png new file mode 100644 index 000000000000..5bbc74fdbb0d Binary files /dev/null and b/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeploymacbook-13.snap.png new file mode 100644 index 000000000000..7c1130ffb547 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetPreview.snap.png new file mode 100644 index 000000000000..998b53193707 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetCanvas.snap.png new file mode 100644 index 000000000000..c5451dadc795 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetCanvasDark.snap.png new file mode 100644 index 000000000000..1949ff5946c1 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeployipad-2.snap.png new file mode 100644 index 000000000000..c31e5b502f47 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeployiphone-6.snap.png new file mode 100644 index 000000000000..a11abdeaed78 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeploymacbook-13.snap.png new file mode 100644 index 000000000000..321ee313ebab Binary files /dev/null and b/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchoGroupWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchoGroupWidgetPreview.snap.png new file mode 100644 index 000000000000..1b87c03ff8d8 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchoGroupWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetCanvas.snap.png new file mode 100644 index 000000000000..75d9564de1c5 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetCanvasDark.snap.png new file mode 100644 index 000000000000..6496312a2245 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeployipad-2.snap.png new file mode 100644 index 000000000000..4f706e6d8424 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeployiphone-6.snap.png new file mode 100644 index 000000000000..48c0daa4407b Binary files /dev/null and b/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeploymacbook-13.snap.png new file mode 100644 index 000000000000..40401948a0ee Binary files /dev/null and b/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetPreview.snap.png new file mode 100644 index 000000000000..7d628b54d969 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetCanvas.snap.png new file mode 100644 index 000000000000..c52f4153fa7c Binary files /dev/null and b/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetCanvasDark.snap.png new file mode 100644 index 000000000000..e14f85c17b9c Binary files /dev/null and b/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeployipad-2.snap.png new file mode 100644 index 000000000000..f0ebc4195a4c Binary files /dev/null and b/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeployiphone-6.snap.png new file mode 100644 index 000000000000..a7373b73c04a Binary files /dev/null and b/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeploymacbook-13.snap.png new file mode 100644 index 000000000000..1c734b6533ce Binary files /dev/null and b/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetPreview.snap.png new file mode 100644 index 000000000000..42ad7020d51f Binary files /dev/null and b/app/client/cypress/snapshots/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetCanvas.snap.png index 4588639c3dd5..5d788e1547e2 100644 Binary files a/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetCanvas.snap.png and b/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetCanvasDark.snap.png index 7902052271a4..74ec33db5198 100644 Binary files a/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetCanvasDark.snap.png and b/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeployipad-2.snap.png index e29f5a9cc7f6..e6e2eda3cf3a 100644 Binary files a/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeployipad-2.snap.png and b/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeployiphone-6.snap.png index dbfedf4bf424..f499d7cfc7b1 100644 Binary files a/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeployiphone-6.snap.png and b/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeploymacbook-13.snap.png index e574123b8604..a464da47d9fa 100644 Binary files a/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeploymacbook-13.snap.png and b/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetPreview.snap.png index 4abc9fa57fbb..e8d57dec33bb 100644 Binary files a/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetPreview.snap.png and b/app/client/cypress/snapshots/AnvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetPreview.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetCanvas.snap.png b/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetCanvas.snap.png new file mode 100644 index 000000000000..604cad61c897 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetCanvas.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetCanvasDark.snap.png b/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetCanvasDark.snap.png new file mode 100644 index 000000000000..1f9edcf99b4d Binary files /dev/null and b/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetCanvasDark.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetDeployipad-2.snap.png b/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetDeployipad-2.snap.png new file mode 100644 index 000000000000..31e18c4f995c Binary files /dev/null and b/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetDeployipad-2.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetDeployiphone-6.snap.png b/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetDeployiphone-6.snap.png new file mode 100644 index 000000000000..7265a1bb7bb8 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetDeployiphone-6.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetDeploymacbook-13.snap.png b/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetDeploymacbook-13.snap.png new file mode 100644 index 000000000000..1a885daf4d28 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetDeploymacbook-13.snap.png differ diff --git a/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetPreview.snap.png b/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetPreview.snap.png new file mode 100644 index 000000000000..bfdf68c72394 Binary files /dev/null and b/app/client/cypress/snapshots/AnvilZoneSectionWidgetSnapshot_spec.ts/anvilZoneSectionWidgetPreview.snap.png differ diff --git a/app/client/cypress/support/Pages/Anvil/AnvilSnapshot.ts b/app/client/cypress/support/Pages/Anvil/AnvilSnapshot.ts index 1b0de5efce69..3145aeb51ea2 100644 --- a/app/client/cypress/support/Pages/Anvil/AnvilSnapshot.ts +++ b/app/client/cypress/support/Pages/Anvil/AnvilSnapshot.ts @@ -9,14 +9,16 @@ export class AnvilSnapshot { exitPreviewMode: ObjectsRegistry.CommonLocators._exitPreviewMode, canvas: "[data-testid=t--canvas-artboard]", colorMode: "[data-testid=t--anvil-theme-settings-color-mode]", - appViewerPage: "[data-testid=t--app-viewer-page-body]", + appViewerPage: "[data-testid=t--app-viewer-page]", propertyPaneSidebar: "[data-testid=t--property-pane-sidebar]", }; public verifyCanvasMode = async (widgetName: string) => { this.agHelper .GetElement(this.locators.canvas) - .matchImageSnapshot(`anvil${widgetName}Canvas`); + .matchImageSnapshot(`anvil${widgetName}Canvas`, { + comparisonMethod: "ssim", + }); this.setTheme("dark"); @@ -34,7 +36,9 @@ export class AnvilSnapshot { this.agHelper .GetElement(this.locators.canvas) - .matchImageSnapshot(`anvil${widgetName}Preview`); + .matchImageSnapshot(`anvil${widgetName}Preview`, { + comparisonMethod: "ssim", + }); this.exitPreviewMode(); }; @@ -59,7 +63,7 @@ export class AnvilSnapshot { this.agHelper .GetElement(this.locators.appViewerPage) .matchImageSnapshot(`anvil${widgetName}Deploy${device}`, { - capture: "fullPage", + comparisonMethod: "ssim", }); }); }; @@ -90,4 +94,20 @@ export class AnvilSnapshot { this.exitPreviewMode(); this.agHelper.GetNClick(this.locators.propertyPaneSidebar); }; + + public triggerCheckboxGroupInvalidState = () => { + this.enterPreviewMode(); + cy.get( + "[data-widget-name*='CheckboxGroup'] div:has([aria-label='(required)']) div:has(input[type=checkbox]) label", + ) + .first() + .click(); + cy.get( + "[data-widget-name*='CheckboxGroup'] div:has([aria-label='(required)']) div:has(input[type=checkbox]) label", + ) + .first() + .click(); + this.exitPreviewMode(); + this.agHelper.GetNClick(this.locators.propertyPaneSidebar); + }; } diff --git a/app/client/cypress/support/e2e.js b/app/client/cypress/support/e2e.js index f622ca9258fe..eb8b6adae26b 100644 --- a/app/client/cypress/support/e2e.js +++ b/app/client/cypress/support/e2e.js @@ -19,7 +19,7 @@ import "cypress-real-events/support"; import "cypress-wait-until"; import "cypress-network-idle"; import "cypress-xpath"; -import * as MESSAGES from "../../../client/src/ce/constants/messages.ts"; +import * as MESSAGES from "../../src/ce/constants/messages.ts"; import "./ApiCommands"; // Import commands.js using ES2015 syntax: import "./commands"; diff --git a/app/client/package.json b/app/client/package.json index 24697381974e..272676f9cfb6 100644 --- a/app/client/package.json +++ b/app/client/package.json @@ -42,7 +42,10 @@ "prettier:ci": "yarn workspaces foreach -ptv run prettier", "check-types": "yarn tsc --noEmit", "init-husky": "cd ../.. && husky install app/client/.husky", - "clean:workspaces": "yarn workspaces foreach -pAv exec rm -rf node_modules" + "clean:workspaces": "yarn workspaces foreach -pAv exec rm -rf node_modules", + "cypress:snapshot": "npx cypress run -b chromium -s", + "cypress:snapshot:docker": "docker run --network='host' -it --rm -e CYPRESS_$1 -v $PWD:/cypress -w /cypress cypress-snapshot $0", + "cypress:snapshot:docker:build": " docker build . -f cypress/Dockerfile -t cypress-snapshot" }, "dependencies": { "@aws-sdk/client-s3": "^3.441.0", @@ -82,6 +85,7 @@ "@tanstack/virtual-core": "^3.0.0-beta.18", "@tinymce/tinymce-react": "^5.0.0", "@types/babel__standalone": "^7.1.7", + "@types/cypress-image-snapshot": "^3.1.9", "@types/d3-geo": "^3.1.0", "@types/google.maps": "^3.51.0", "@types/react-page-visibility": "^6.4.1", diff --git a/app/client/packages/design-system/theming/src/color/src/DarkModeTheme.ts b/app/client/packages/design-system/theming/src/color/src/DarkModeTheme.ts index c28829cc9aac..b41a90beb4fc 100644 --- a/app/client/packages/design-system/theming/src/color/src/DarkModeTheme.ts +++ b/app/client/packages/design-system/theming/src/color/src/DarkModeTheme.ts @@ -716,25 +716,10 @@ export class DarkModeTheme implements ColorModeTheme { } private get fgNeutral() { - // Desatured version of the seed for harmonious combination with backgrounds and accents. - const color = this.fgAccent.clone(); - - // Minimal contrast that we set for fgAccent (60) is too low for a gray color - if (this.bg.contrastAPCA(this.fgAccent) < 75) { - color.oklch.l += 0.04; - } - - if (this.seedIsAchromatic) { - color.oklch.c = 0; - } - - if (this.seedIsCold && !this.seedIsAchromatic) { - color.oklch.c = 0.03; - } + // Neutral foreground. Slightly less prominent than main fg + const color = this.fg.clone(); - if (!this.seedIsCold && !this.seedIsAchromatic) { - color.oklch.c = 0.01; - } + color.oklch.l -= 0.02; return color; } diff --git a/app/client/packages/design-system/theming/src/color/src/LightModeTheme.ts b/app/client/packages/design-system/theming/src/color/src/LightModeTheme.ts index a1bceb246005..fef725a58bb0 100644 --- a/app/client/packages/design-system/theming/src/color/src/LightModeTheme.ts +++ b/app/client/packages/design-system/theming/src/color/src/LightModeTheme.ts @@ -731,25 +731,10 @@ export class LightModeTheme implements ColorModeTheme { } private get fgNeutral() { - // Desatured version of the seed for harmonious combination with backgrounds and accents. - const color = this.fgAccent.clone(); - - // Minimal contrast that we set for fgAccent (60) is too low for a gray color - if (this.bg.contrastAPCA(this.fgAccent) < 75) { - color.oklch.l -= 0.2; - } - - if (this.seedIsAchromatic) { - color.oklch.c = 0; - } - - if (this.seedIsCold && !this.seedIsAchromatic) { - color.oklch.c = 0.003; - } + // Neutral foreground. Slightly less prominent than main fg + const color = this.fg.clone(); - if (!this.seedIsCold && !this.seedIsAchromatic) { - color.oklch.c = 0.001; - } + color.oklch.l += 0.1; return color; } diff --git a/app/client/packages/design-system/theming/src/color/tests/DarkModeTheme.test.ts b/app/client/packages/design-system/theming/src/color/tests/DarkModeTheme.test.ts index 9a87fab4624b..cb5734dee532 100644 --- a/app/client/packages/design-system/theming/src/color/tests/DarkModeTheme.test.ts +++ b/app/client/packages/design-system/theming/src/color/tests/DarkModeTheme.test.ts @@ -567,19 +567,19 @@ describe("fgNeutral color", () => { it("should return correct color when chroma < 0.04", () => { const { fgNeutral } = new DarkModeTheme("oklch(0.45 0.03 60)").getColors(); - expect(fgNeutral).toEqual("rgb(81.873% 81.873% 81.873%)"); + expect(fgNeutral).toEqual("rgb(88.912% 88.912% 88.912%)"); }); it("should return correct color when chroma > 0.04 and hue is between 120 and 300", () => { const { fgNeutral } = new DarkModeTheme("oklch(0.45 0.1 150)").getColors(); - expect(fgNeutral).toEqual("rgb(76.801% 84.271% 77.971%)"); + expect(fgNeutral).toEqual("rgb(86.896% 89.904% 87.34%)"); }); it("should return correct color when chroma > 0.04 and hue is not between 120 and 300", () => { const { fgNeutral } = new DarkModeTheme("oklch(0.45 0.1 110)").getColors(); - expect(fgNeutral).toEqual("rgb(81.979% 82.19% 79.311%)"); + expect(fgNeutral).toEqual("rgb(89.043% 89.298% 85.788%)"); }); }); @@ -589,7 +589,7 @@ describe("fgNeutralSubtle color", () => { "oklch(0.45 0.03 60)", ).getColors(); - expect(fgNeutralSubtle).toEqual("rgb(63.258% 63.258% 63.258%)"); + expect(fgNeutralSubtle).toEqual("rgb(69.98% 69.98% 69.98%)"); }); }); diff --git a/app/client/packages/design-system/theming/src/color/tests/LightModeTheme.test.ts b/app/client/packages/design-system/theming/src/color/tests/LightModeTheme.test.ts index c7be28ccda65..abb4944e8fd8 100644 --- a/app/client/packages/design-system/theming/src/color/tests/LightModeTheme.test.ts +++ b/app/client/packages/design-system/theming/src/color/tests/LightModeTheme.test.ts @@ -597,19 +597,19 @@ describe("fgNeutral color", () => { it("should return correct color when chroma < 0.04", () => { const { fgNeutral } = new LightModeTheme("oklch(0.45 0.03 60)").getColors(); - expect(fgNeutral).toEqual("rgb(33.384% 33.384% 33.384%)"); + expect(fgNeutral).toEqual("rgb(10.396% 10.396% 10.396%)"); }); it("should return correct color when chroma > 0.04 and hue is between 120 and 300", () => { const { fgNeutral } = new LightModeTheme("oklch(0.45 0.1 150)").getColors(); - expect(fgNeutral).toEqual("rgb(32.964% 33.592% 33.055%)"); + expect(fgNeutral).toEqual("rgb(9.6799% 10.739% 9.8424%)"); }); it("should return correct color when chroma > 0.04 and hue is not between 120 and 300", () => { const { fgNeutral } = new LightModeTheme("oklch(0.45 0.1 110)").getColors(); - expect(fgNeutral).toEqual("rgb(33.392% 33.411% 33.167%)"); + expect(fgNeutral).toEqual("rgb(10.444% 10.527% 9.2918%)"); }); }); @@ -619,7 +619,7 @@ describe("fgNeutralSubtle color", () => { "oklch(0.45 0.03 60)", ).getColors(); - expect(fgNeutralSubtle).toEqual("rgb(44.47% 44.47% 44.47%)"); + expect(fgNeutralSubtle).toEqual("rgb(19.892% 19.892% 19.892%)"); }); }); diff --git a/app/client/packages/design-system/theming/src/token/src/tokensConfigs.json b/app/client/packages/design-system/theming/src/token/src/tokensConfigs.json index 457ace4589fa..5d5e03281325 100644 --- a/app/client/packages/design-system/theming/src/token/src/tokensConfigs.json +++ b/app/client/packages/design-system/theming/src/token/src/tokensConfigs.json @@ -9,13 +9,13 @@ "userDensityRatio": 0.2 }, "outerSpacing": { - "V": 2.25, + "V": 1.75, "R": 2, - "N": 2, + "N": 1.75, "stepsUp": 8, "stepsDown": 0, - "userSizingRatio": 0.8, - "userDensityRatio": 1.75 + "userSizingRatio": 0.05, + "userDensityRatio": 2.25 }, "innerSpacing": { "V": 1.4, diff --git a/app/client/packages/design-system/widgets/src/components/Label/src/Label.tsx b/app/client/packages/design-system/widgets/src/components/Label/src/Label.tsx index 2b7790f2bc56..5b329503423f 100644 --- a/app/client/packages/design-system/widgets/src/components/Label/src/Label.tsx +++ b/app/client/packages/design-system/widgets/src/components/Label/src/Label.tsx @@ -19,7 +19,7 @@ export const Label = (props: LabelProps) => { elementType="label" {...rest} > - + {text} {Boolean(isRequired) && ( diff --git a/app/client/src/pages/AppViewer/index.tsx b/app/client/src/pages/AppViewer/index.tsx index e5be351d221d..2f711b6ae196 100644 --- a/app/client/src/pages/AppViewer/index.tsx +++ b/app/client/src/pages/AppViewer/index.tsx @@ -218,7 +218,6 @@ function AppViewer(props: Props) { 1} headerHeight={headerHeight} ref={focusRef} diff --git a/app/client/src/widgets/wds/WDSSwitchWidget/widget/index.tsx b/app/client/src/widgets/wds/WDSSwitchWidget/widget/index.tsx index 2bc3dddd7ee2..4c354f6b989a 100644 --- a/app/client/src/widgets/wds/WDSSwitchWidget/widget/index.tsx +++ b/app/client/src/widgets/wds/WDSSwitchWidget/widget/index.tsx @@ -98,6 +98,7 @@ class WDSSwitchWidget extends BaseWidget { id={this.props.widgetId} isDisabled={this.props.isDisabled} isInvalid={this.props.isValid === "invalid"} + isSelected={this.props.isSwitchedOn} key={this.props.widgetId} labelPosition={this.props.labelPosition} onChange={this.onChange} diff --git a/app/client/src/widgets/wds/WDSTableWidget/component/Table.tsx b/app/client/src/widgets/wds/WDSTableWidget/component/Table.tsx index 087dfce2840c..fe2653d8d8d7 100644 --- a/app/client/src/widgets/wds/WDSTableWidget/component/Table.tsx +++ b/app/client/src/widgets/wds/WDSTableWidget/component/Table.tsx @@ -98,6 +98,7 @@ export interface TableProps { showConnectDataOverlay: boolean; onConnectData: () => void; excludeFromTabOrder?: boolean; + disableScroll?: boolean; } const defaultColumn = { @@ -294,6 +295,7 @@ export function Table(props: TableProps) { )}
diff --git a/app/client/src/widgets/wds/WDSTableWidget/component/index.tsx b/app/client/src/widgets/wds/WDSTableWidget/component/index.tsx index f6ad957954e8..1652d66683c4 100644 --- a/app/client/src/widgets/wds/WDSTableWidget/component/index.tsx +++ b/app/client/src/widgets/wds/WDSTableWidget/component/index.tsx @@ -82,6 +82,7 @@ interface ReactTableComponentProps { showConnectDataOverlay: boolean; onConnectData: () => void; excludeFromTabOrder?: boolean; + disableScroll?: boolean; } function ReactTableComponent(props: ReactTableComponentProps) { @@ -98,6 +99,7 @@ function ReactTableComponent(props: ReactTableComponentProps) { delimiter, disabledAddNewRowSave, disableDrag, + disableScroll, editableCell, editMode, filters, @@ -209,6 +211,7 @@ function ReactTableComponent(props: ReactTableComponentProps) { data={tableData} delimiter={delimiter} disableDrag={memoziedDisableDrag} + disableScroll={disableScroll} disabledAddNewRowSave={disabledAddNewRowSave} editMode={editMode} editableCell={editableCell} @@ -312,6 +315,7 @@ export default React.memo(ReactTableComponent, (prev, next) => { prev.allowSorting === next.allowSorting && prev.disabledAddNewRowSave === next.disabledAddNewRowSave && prev.canFreezeColumn === next.canFreezeColumn && - prev.showConnectDataOverlay === next.showConnectDataOverlay + prev.showConnectDataOverlay === next.showConnectDataOverlay && + prev.disableScroll === next.disableScroll ); }); diff --git a/app/client/src/widgets/wds/WDSTableWidget/component/styles.module.css b/app/client/src/widgets/wds/WDSTableWidget/component/styles.module.css index b1b13cbbd1a4..8aa72cc38306 100644 --- a/app/client/src/widgets/wds/WDSTableWidget/component/styles.module.css +++ b/app/client/src/widgets/wds/WDSTableWidget/component/styles.module.css @@ -34,6 +34,10 @@ container-type: inline-size; } + [data-disable-scroll] { + overflow: hidden; + } + /* -------------------------------------------------------------------------- * TABLE *-------------------------------------------------------------------------- */ @@ -163,6 +167,10 @@ border-inline-end: var(--border-width-1) solid var(--color-bd); } + &[data-variant="default"] [role="row"]:last-child [role="cell"] { + border-block-end-color: transparent; + } + &:is([data-variant="horizontal-borders"], [data-variant="default"]) [role="cell"] { border-block-end: var(--border-width-1) solid var(--color-bd); diff --git a/app/client/src/widgets/wds/WDSTableWidget/widget/index.tsx b/app/client/src/widgets/wds/WDSTableWidget/widget/index.tsx index 0e7e69809d39..818ece1fde2d 100644 --- a/app/client/src/widgets/wds/WDSTableWidget/widget/index.tsx +++ b/app/client/src/widgets/wds/WDSTableWidget/widget/index.tsx @@ -925,6 +925,10 @@ export class WDSTableWidget extends BaseWidget { columns={tableColumns} delimiter={delimiter} disableDrag={this.toggleDrag} + disableScroll={ + this.props.renderMode === RenderModes.CANVAS && + !Boolean(this.props.isPreviewMode) + } excludeFromTabOrder={this.props.disableWidgetInteraction} handleReorderColumn={this.handleReorderColumn} handleResizeColumn={this.handleResizeColumn} diff --git a/app/client/src/widgets/wds/WDSTableWidget/widget/reactTableUtils/getColumnsPureFn.tsx b/app/client/src/widgets/wds/WDSTableWidget/widget/reactTableUtils/getColumnsPureFn.tsx index 8b143e4f241b..becd8b7b2b92 100644 --- a/app/client/src/widgets/wds/WDSTableWidget/widget/reactTableUtils/getColumnsPureFn.tsx +++ b/app/client/src/widgets/wds/WDSTableWidget/widget/reactTableUtils/getColumnsPureFn.tsx @@ -18,6 +18,8 @@ export type getColumns = ( renderMode: RenderMode, ) => ReactTableColumnProps[]; +const BORDER_WIDTH = 1; + //TODO: (Vamsi) need to unit test this function export const getColumnsPureFn: getColumns = ( @@ -94,7 +96,9 @@ export const getColumnsPureFn: getColumns = ( columns[lastColumnIndex].width || DEFAULT_COLUMN_WIDTH; const remainingWidth = componentWidth - totalColumnWidth; // Adding the remaining width i.e. space left towards the right, to the last column width - columns[lastColumnIndex].width = lastColumnWidth + remainingWidth; + // Note: subtracting 2 * BORDER_WIDTH to account for the border width, as componentWidth includes the border width as well + columns[lastColumnIndex].width = + lastColumnWidth + remainingWidth - 2 * BORDER_WIDTH; } } else if (totalColumnWidth > componentWidth) { /* diff --git a/app/client/yarn.lock b/app/client/yarn.lock index 35a1d672d59f..c2080b0365ef 100644 --- a/app/client/yarn.lock +++ b/app/client/yarn.lock @@ -10547,6 +10547,13 @@ __metadata: languageName: node linkType: hard +"@types/cypress-image-snapshot@npm:^3.1.9": + version: 3.1.9 + resolution: "@types/cypress-image-snapshot@npm:3.1.9" + checksum: 8afbeb26c575275d02861cfafde5bfae3a7d25f35d0c18bbc1c70a72b45a8bc021ff73de3b5d4a36c7cb22bc86442fee14308ef096f9650dc5eddd941f923f2f + languageName: node + linkType: hard + "@types/d3-geo@npm:^3.1.0": version: 3.1.0 resolution: "@types/d3-geo@npm:3.1.0" @@ -13128,6 +13135,7 @@ __metadata: "@tinymce/tinymce-react": ^5.0.0 "@types/babel__standalone": ^7.1.7 "@types/codemirror": ^0.0.96 + "@types/cypress-image-snapshot": ^3.1.9 "@types/d3-geo": ^3.1.0 "@types/deep-diff": ^1.0.0 "@types/dom-mediacapture-record": ^1.0.11