Skip to content

Commit a668a58

Browse files
Merge branch 'release/15.4.0' into chore/add_15_4_0_changelog
2 parents 469a34f + 169bbf6 commit a668a58

File tree

11 files changed

+805
-7
lines changed

11 files changed

+805
-7
lines changed

docs/api/commands/prompt.mdx

Lines changed: 779 additions & 0 deletions
Large diffs are not rendered by default.

docs/api/table-of-contents.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ Cypress has a variety of additional commands to help write tests.
140140
| [`.origin()`](/api/commands/origin) | Visit multiple domains of different origin in a single test. |
141141
| [`.pause()`](/api/commands/pause) | Pause test execution, allowing interaction with the application under test before resuming. |
142142
| [`.press()`](/api/commands/press) | Trigger native key events in your application to simulate real user keyboard interactions. |
143+
| [`.prompt()`](/api/commands/prompt) | Use natural language to generate Cypress tests with AI. |
143144
| [`.readFile()`](/api/commands/readfile) | Read a file from disk. |
144145
| [`.reload()`](/api/commands/reload) | Reload the page. |
145146
| [`.request()`](/api/commands/request) | Make an HTTP request. |

src/components/docs-image/style.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
.docsImage {
2-
margin-bottom: 1rem;
2+
margin-bottom: 2rem;
33
box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.26);
44
}
55

66
.noBorder {
7-
margin-bottom: 1rem;
7+
margin-bottom: 2rem;
88
box-shadow: none;
99
}
1010

src/components/video-local/style.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.docsVideo {
2-
margin-bottom: 1.4rem;
2+
margin-bottom: 2rem;
33
}
44

55
.docsVideo video {

src/css/custom.scss

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@
122122
--ifm-heading-font-family: Poppins;
123123
--ifm-heading-font-weight: var(--ifm-font-weight-bold);
124124
--ifm-line-height-base: 1.6;
125-
--ifm-heading-color: theme(colors.gray.1000) --ifm-code-font-size: 95%;
125+
--ifm-heading-color: theme(colors.gray.1000);
126+
--ifm-code-font-size: 95%;
126127
--ifm-pre-line-height: 1.5em;
127128

128129
--ifm-code-background-color: #282a36;
@@ -293,6 +294,18 @@ html[data-theme='dark'] {
293294
}
294295
}
295296

297+
.alert.alert--secondary {
298+
background-color: var(--ifm-color-indigo-50);
299+
color: var(--ifm-color-indigo-1000);
300+
--ifm-alert-border-color: var(--ifm-color-indigo-400);
301+
302+
[data-theme='dark'] & {
303+
background-color: var(--ifm-color-indigo-1000);
304+
color: var(--ifm-color-indigo-50);
305+
--ifm-alert-border-color: var(--ifm-color-indigo-800);
306+
}
307+
}
308+
296309
div[class^='announcementBar'] {
297310
font-size: 1rem;
298311
font-weight: var(--ifm-font-weight-semibold);

src/css/embeds.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
overflow: hidden;
77
max-width: 100%;
88
height: auto;
9-
margin-bottom: 1rem;
9+
margin-bottom: 2rem;
1010
box-shadow: 0 0 3px rgb(0 0 0 / 30%);
1111
border: 1px solid var(--ifm-toc-border-color);
1212
}

src/css/markdown.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ div.markdown {
7373
&.border-indigo-500 {
7474
html[data-theme='dark'] & {
7575
color: var(--ifm-color-jade-100);
76-
border-color:var(--ifm-color-jade-100);
76+
border-color: var(--ifm-color-jade-100);
7777
}
7878
}
7979

@@ -102,6 +102,10 @@ div.markdown {
102102
}
103103
}
104104

105+
.alert {
106+
margin-bottom: 2rem;
107+
}
108+
105109
.alert,
106110
& {
107111
// add border bottom to code tags that are in a link

src/css/table-of-contents.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@
3232

3333
.table-of-contents .table-of-contents__link--active {
3434
@apply text-indigo-500;
35+
font-weight: 700;
36+
3537
html[data-theme='dark'] & {
3638
@apply text-indigo-300;
3739
}
38-
font-weight: 700;
3940
}
4041

4142
.table-of-contents__left-border {
936 KB
Binary file not shown.
315 KB
Binary file not shown.

0 commit comments

Comments
 (0)