-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38322 from appsmithorg/release
23/12 Daily Promotion
- Loading branch information
Showing
246 changed files
with
3,796 additions
and
1,572 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
148 changes: 148 additions & 0 deletions
148
app/client/cypress/e2e/Regression/ClientSide/IDE/Tabs_Navigation_spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
import { ObjectsRegistry } from "../../../../support/Objects/Registry"; | ||
import { | ||
agHelper, | ||
dataSources, | ||
locators, | ||
jsEditor, | ||
} from "../../../../support/Objects/ObjectsCore"; | ||
import PageList from "../../../../support/Pages/PageList"; | ||
import EditorNavigation, { | ||
editorTabSelector, | ||
PageLeftPane, | ||
PagePaneSegment, | ||
} from "../../../../support/Pages/EditorNavigation"; | ||
|
||
let dsName = "MongoDB"; | ||
|
||
describe("Tabs Navigation", { tags: ["@tag.IDE"] }, () => { | ||
before(() => { | ||
dataSources.CreateDataSource("Mongo"); | ||
cy.renameDatasource(dsName); | ||
}); | ||
|
||
it("should create and switch between JS files", () => { | ||
// Create first JS file | ||
jsEditor.CreateJSObject("", { prettify: false, toRun: false }); | ||
jsEditor.RenameJSObjFromPane("Page1_JS1"); | ||
|
||
// Create second JS file | ||
jsEditor.CreateJSObject("", { prettify: false, toRun: false }); | ||
jsEditor.RenameJSObjFromPane("Page1_JS2"); | ||
|
||
agHelper.GetNClick(editorTabSelector("page1_js1")); | ||
|
||
jsEditor.currentJSObjectName().then((jsObjName) => { | ||
expect(jsObjName).equal("Page1_JS1"); | ||
}); | ||
|
||
agHelper.GetNClick(editorTabSelector("page1_js2")); | ||
|
||
jsEditor.currentJSObjectName().then((jsObjName) => { | ||
expect(jsObjName).equal("Page1_JS2"); | ||
}); | ||
}); | ||
|
||
it("should create and switch between queries", () => { | ||
dataSources.CreateQueryFromOverlay(dsName, "", "Page1_Query1"); | ||
agHelper | ||
.GetElement("[data-testid='t--ide-tab-page1_query1']") | ||
.should("be.visible"); | ||
dataSources.CreateQueryFromOverlay(dsName, "", "Page1_Query2"); | ||
|
||
// Switch between tabs | ||
agHelper.GetNClick(editorTabSelector("page1_query1")); | ||
|
||
agHelper | ||
.GetElement(locators._queryName) | ||
.should("have.text", "Page1_Query1"); | ||
|
||
agHelper.GetNClick(editorTabSelector("page1_query2")); | ||
|
||
agHelper | ||
.GetElement(locators._queryName) | ||
.should("have.text", "Page1_Query2"); | ||
}); | ||
|
||
it("should create items in the next page and navigate", () => { | ||
// Create first page | ||
PageList.AddNewPage("New blank page"); | ||
|
||
// Create first JS file | ||
jsEditor.CreateJSObject("", { prettify: false, toRun: false }); | ||
jsEditor.RenameJSObjFromPane("Page2_JS1"); | ||
|
||
// Create second JS file | ||
jsEditor.CreateJSObject("", { prettify: false, toRun: false }); | ||
jsEditor.RenameJSObjFromPane("Page2_JS2"); | ||
|
||
agHelper.GetNClick(editorTabSelector("page2_js1")); | ||
|
||
jsEditor.currentJSObjectName().then((jsObjName) => { | ||
expect(jsObjName).equal("Page2_JS1"); | ||
}); | ||
|
||
agHelper.GetNClick(editorTabSelector("page2_js2")); | ||
|
||
jsEditor.currentJSObjectName().then((jsObjName) => { | ||
expect(jsObjName).equal("Page2_JS2"); | ||
}); | ||
|
||
dataSources.CreateQueryFromOverlay(dsName, "", "Page2_Query1"); | ||
dataSources.CreateQueryFromOverlay(dsName, "", "Page2_Query2"); | ||
|
||
agHelper.GetNClick(editorTabSelector("page2_query1")); | ||
|
||
agHelper | ||
.GetElement(locators._queryName) | ||
.should("have.text", "Page2_Query1"); | ||
|
||
agHelper.GetNClick(editorTabSelector("page2_query2")); | ||
|
||
agHelper | ||
.GetElement(locators._queryName) | ||
.should("have.text", "Page2_Query2"); | ||
}); | ||
|
||
it("Use tabs navigation with multiple pages", () => { | ||
EditorNavigation.NavigateToPage("Page1"); | ||
agHelper.GetNClick(editorTabSelector("page1_query1")); | ||
|
||
agHelper | ||
.GetElement(locators._queryName) | ||
.should("have.text", "Page1_Query1"); | ||
|
||
agHelper.GetNClick(editorTabSelector("page1_query2")); | ||
|
||
agHelper | ||
.GetElement(locators._queryName) | ||
.should("have.text", "Page1_Query2"); | ||
|
||
PageLeftPane.switchSegment(PagePaneSegment.JS); | ||
|
||
agHelper.GetNClick(editorTabSelector("page1_js1")); | ||
|
||
jsEditor.currentJSObjectName().then((jsObjName) => { | ||
expect(jsObjName).equal("Page1_JS1"); | ||
}); | ||
|
||
agHelper.GetNClick(editorTabSelector("page1_js2")); | ||
|
||
jsEditor.currentJSObjectName().then((jsObjName) => { | ||
expect(jsObjName).equal("Page1_JS2"); | ||
}); | ||
|
||
EditorNavigation.NavigateToPage("Page2"); | ||
PageLeftPane.switchSegment(PagePaneSegment.JS); | ||
agHelper.GetNClick(editorTabSelector("page2_js1")); | ||
|
||
jsEditor.currentJSObjectName().then((jsObjName) => { | ||
expect(jsObjName).equal("Page2_JS1"); | ||
}); | ||
|
||
agHelper.GetNClick(editorTabSelector("page2_js2")); | ||
|
||
jsEditor.currentJSObjectName().then((jsObjName) => { | ||
expect(jsObjName).equal("Page2_JS2"); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+107 Bytes
(100%)
...nvil/Widgets/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetCanvas.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+194 Bytes
(100%)
.../Widgets/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetCanvasDark.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+344 Bytes
(100%)
...nvil/Widgets/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeploy.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+243 Bytes
(100%)
...Widgets/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeployIpad2.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.35 KB
(97%)
...dgets/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeployIphone6.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+296 Bytes
(100%)
...ets/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetDeployMacbook13.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+176 Bytes
(100%)
...vil/Widgets/AnvilButtonWidgetSnapshot_spec.ts/anvilButtonWidgetPreview.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+16.2 KB
(120%)
...nvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetCanvas.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+16.1 KB
(120%)
...CheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetCanvasDark.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+11.8 KB
(110%)
...nvilCheckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeploy.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+16.4 KB
(120%)
...heckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeployIpad2.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+40.8 KB
(140%)
...ckboxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeployIphone6.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+11.8 KB
(110%)
...boxGroupWidgetSnapshot_spec.ts/anvilCheckboxGroupWidgetDeployMacbook13.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+365 Bytes
(100%)
.../Widgets/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetCanvas.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+317 Bytes
(100%)
...gets/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetCanvasDark.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+430 Bytes
(100%)
.../Widgets/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeploy.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+438 Bytes
(100%)
...ets/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeployIpad2.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+172 Bytes
(100%)
...s/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeployIphone6.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+422 Bytes
(100%)
...AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetDeployMacbook13.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+223 Bytes
(100%)
...Widgets/AnvilCheckboxWidgetSnapshot_spec.ts/anvilCheckboxWidgetPreview.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+733 Bytes
(100%)
...nvilCurrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeploy.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+763 Bytes
(100%)
...urrencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeployIpad2.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+361 Bytes
(100%)
...rencyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeployIphone6.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+748 Bytes
(100%)
...ncyInputWidgetSnapshot_spec.ts/anvilCurrencyInputWidgetDeployMacbook13.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+360 Bytes
(100%)
...il/Widgets/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetCanvas.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+238 Bytes
(100%)
...idgets/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetCanvasDark.snap.png
Oops, something went wrong.
Binary file modified
BIN
+524 Bytes
(100%)
...il/Widgets/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeploy.snap.png
Oops, something went wrong.
Binary file modified
BIN
+421 Bytes
(100%)
...dgets/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeployIpad2.snap.png
Oops, something went wrong.
Binary file modified
BIN
-148 Bytes
(100%)
...ets/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeployIphone6.snap.png
Oops, something went wrong.
Binary file modified
BIN
+547 Bytes
(100%)
...s/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetDeployMacbook13.snap.png
Oops, something went wrong.
Binary file modified
BIN
+436 Bytes
(100%)
...l/Widgets/AnvilHeadingWidgetSnapshot_spec.ts/anvilHeadingWidgetPreview.snap.png
Oops, something went wrong.
Binary file modified
BIN
-30 Bytes
(100%)
...gets/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetCanvas.snap.png
Oops, something went wrong.
Binary file modified
BIN
-23 Bytes
(100%)
.../AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetCanvasDark.snap.png
Oops, something went wrong.
Binary file modified
BIN
+69 Bytes
(100%)
...gets/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeploy.snap.png
Oops, something went wrong.
Binary file modified
BIN
+25 Bytes
(100%)
...AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeployIpad2.snap.png
Oops, something went wrong.
Binary file modified
BIN
+48 Bytes
(100%)
...vilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeployIphone6.snap.png
Oops, something went wrong.
Binary file modified
BIN
+47 Bytes
(100%)
...lIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetDeployMacbook13.snap.png
Oops, something went wrong.
Binary file modified
BIN
-36 Bytes
(100%)
...ets/AnvilIconButtonWidgetSnapshot_spec.ts/anvilIconButtonWidgetPreview.snap.png
Oops, something went wrong.
Binary file modified
BIN
-1.12 KB
(99%)
.../AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetCanvas.snap.png
Oops, something went wrong.
Binary file modified
BIN
-1.42 KB
(99%)
...ilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetCanvasDark.snap.png
Oops, something went wrong.
Binary file modified
BIN
+491 Bytes
(100%)
.../AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeploy.snap.png
Oops, something went wrong.
Binary file modified
BIN
-292 Bytes
(100%)
...lInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeployIpad2.snap.png
Oops, something went wrong.
Binary file modified
BIN
-4.17 KB
(92%)
...nlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeployIphone6.snap.png
Oops, something went wrong.
Binary file modified
BIN
+373 Bytes
(100%)
...ineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetDeployMacbook13.snap.png
Oops, something went wrong.
Binary file modified
BIN
+328 Bytes
(100%)
...AnvilInlineButtonWidgetSnapshot_spec.ts/anvilInlineButtonWidgetPreview.snap.png
Oops, something went wrong.
Binary file modified
BIN
+8.5 KB
(110%)
.../Anvil/Widgets/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeploy.snap.png
Oops, something went wrong.
Binary file modified
BIN
+9.66 KB
(120%)
...l/Widgets/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeployIpad2.snap.png
Oops, something went wrong.
Binary file modified
BIN
+19 KB
(130%)
...Widgets/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeployIphone6.snap.png
Oops, something went wrong.
Binary file modified
BIN
+8.21 KB
(110%)
...dgets/AnvilInputWidgetSnapshot_spec.ts/anvilInputWidgetDeployMacbook13.snap.png
Oops, something went wrong.
Binary file modified
BIN
+116 Bytes
(100%)
...idgets/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetCanvas.snap.png
Oops, something went wrong.
Binary file modified
BIN
+44 Bytes
(100%)
...ts/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetCanvasDark.snap.png
Oops, something went wrong.
Binary file modified
BIN
+614 Bytes
(100%)
...idgets/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeploy.snap.png
Oops, something went wrong.
Binary file modified
BIN
-324 Bytes
(100%)
...s/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeployIpad2.snap.png
Oops, something went wrong.
Binary file modified
BIN
-731 Bytes
(99%)
...AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeployIphone6.snap.png
Oops, something went wrong.
Binary file modified
BIN
+586 Bytes
(100%)
...vilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetDeployMacbook13.snap.png
Oops, something went wrong.
Binary file modified
BIN
+498 Bytes
(100%)
...dgets/AnvilParagraphWidgetSnapshot_spec.ts/anvilParagraphWidgetPreview.snap.png
Oops, something went wrong.
Binary file modified
BIN
+654 Bytes
(100%)
...gets/AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeploy.snap.png
Oops, something went wrong.
Binary file modified
BIN
+477 Bytes
(100%)
...AnvilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeployIpad2.snap.png
Oops, something went wrong.
Binary file modified
BIN
-94 Bytes
(100%)
...vilPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeployIphone6.snap.png
Oops, something went wrong.
Binary file modified
BIN
+577 Bytes
(100%)
...lPhoneInputWidgetSnapshot_spec.ts/anvilPhoneInputWidgetDeployMacbook13.snap.png
Oops, something went wrong.
Binary file modified
BIN
+11.4 KB
(110%)
...gets/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetCanvas.snap.png
Oops, something went wrong.
Binary file modified
BIN
+11.3 KB
(110%)
.../AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetCanvasDark.snap.png
Oops, something went wrong.
Binary file modified
BIN
+7.28 KB
(110%)
...gets/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeploy.snap.png
Oops, something went wrong.
Binary file modified
BIN
+11.9 KB
(110%)
...AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeployIpad2.snap.png
Oops, something went wrong.
Binary file modified
BIN
+30.9 KB
(120%)
...vilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeployIphone6.snap.png
Oops, something went wrong.
Binary file modified
BIN
+2.57 KB
(100%)
...lRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetDeployMacbook13.snap.png
Oops, something went wrong.
Binary file modified
BIN
+7.11 KB
(110%)
...ets/AnvilRadioGroupWidgetSnapshot_spec.ts/anvilRadioGroupWidgetPreview.snap.png
Oops, something went wrong.
Binary file modified
BIN
+559 Bytes
(100%)
.../Anvil/Widgets/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetCanvas.snap.png
Oops, something went wrong.
Binary file modified
BIN
+628 Bytes
(100%)
...il/Widgets/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetCanvasDark.snap.png
Oops, something went wrong.
Binary file modified
BIN
+459 Bytes
(100%)
.../Anvil/Widgets/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeploy.snap.png
Oops, something went wrong.
Binary file modified
BIN
+776 Bytes
(100%)
...l/Widgets/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeployIpad2.snap.png
Oops, something went wrong.
Binary file modified
BIN
-1.23 KB
(99%)
...Widgets/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeployIphone6.snap.png
Oops, something went wrong.
Binary file modified
BIN
+461 Bytes
(100%)
...dgets/AnvilStatsWidgetSnapshot_spec.ts/anvilStatsWidgetDeployMacbook13.snap.png
Oops, something went wrong.
Binary file modified
BIN
+15.7 KB
(110%)
...ts/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetCanvas.snap.png
Oops, something went wrong.
Binary file modified
BIN
+17 KB
(120%)
...nvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetCanvasDark.snap.png
Oops, something went wrong.
Binary file modified
BIN
+14.5 KB
(110%)
...ts/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeploy.snap.png
Oops, something went wrong.
Binary file modified
BIN
+17 KB
(120%)
...vilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeployIpad2.snap.png
Oops, something went wrong.
Binary file modified
BIN
+36.3 KB
(140%)
...lSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeployIphone6.snap.png
Oops, something went wrong.
Binary file modified
BIN
+14.4 KB
(110%)
...witchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetDeployMacbook13.snap.png
Oops, something went wrong.
Binary file modified
BIN
+14.3 KB
(110%)
...s/AnvilSwitchGroupWidgetSnapshot_spec.ts/anvilSwitchGroupWidgetPreview.snap.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
...nvil/Widgets/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetCanvas.snap.png
Oops, something went wrong.
Binary file modified
BIN
+223 Bytes
(100%)
.../Widgets/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetCanvasDark.snap.png
Oops, something went wrong.
Binary file modified
BIN
+94 Bytes
(100%)
...nvil/Widgets/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeploy.snap.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(100%)
...Widgets/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeployIpad2.snap.png
Oops, something went wrong.
Binary file modified
BIN
-821 Bytes
(97%)
...dgets/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeployIphone6.snap.png
Oops, something went wrong.
Binary file modified
BIN
+31 Bytes
(100%)
...ets/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetDeployMacbook13.snap.png
Oops, something went wrong.
Binary file modified
BIN
-71 Bytes
(100%)
...vil/Widgets/AnvilSwitchWidgetSnapshot_spec.ts/anvilSwitchWidgetPreview.snap.png
Oops, something went wrong.
Binary file modified
BIN
-3.71 KB
(97%)
.../Anvil/Widgets/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetCanvas.snap.png
Oops, something went wrong.
Binary file modified
BIN
-4.33 KB
(96%)
...il/Widgets/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetCanvasDark.snap.png
Oops, something went wrong.
Binary file modified
BIN
-1.28 KB
(99%)
.../Anvil/Widgets/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeploy.snap.png
Oops, something went wrong.
Binary file modified
BIN
-3.78 KB
(97%)
...l/Widgets/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeployIpad2.snap.png
Oops, something went wrong.
Binary file modified
BIN
-5.26 KB
(93%)
...Widgets/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeployIphone6.snap.png
Oops, something went wrong.
Binary file modified
BIN
-1.27 KB
(99%)
...dgets/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetDeployMacbook13.snap.png
Oops, something went wrong.
Binary file modified
BIN
-1.64 KB
(99%)
...Anvil/Widgets/AnvilTableWidgetSnapshot_spec.ts/anvilTableWidgetPreview.snap.png
Oops, something went wrong.
Binary file modified
BIN
-7.57 KB
(91%)
...nvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetCanvas.snap.png
Oops, something went wrong.
Binary file modified
BIN
-7.74 KB
(91%)
...ToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetCanvasDark.snap.png
Oops, something went wrong.
Binary file modified
BIN
-990 Bytes
(99%)
...nvilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeploy.snap.png
Oops, something went wrong.
Binary file modified
BIN
-86 Bytes
(100%)
...oolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeployIpad2.snap.png
Oops, something went wrong.
Binary file modified
BIN
-2.21 KB
(95%)
...lbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeployIphone6.snap.png
Oops, something went wrong.
Binary file modified
BIN
-1.01 KB
(99%)
...arButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetDeployMacbook13.snap.png
Oops, something went wrong.
Binary file modified
BIN
-999 Bytes
(99%)
...vilToolbarButtonWidgetSnapshot_spec.ts/anvilToolbarButtonWidgetPreview.snap.png
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.