Skip to content

Commit 0b0dd76

Browse files
authored
v4.5 (#3404)
1 parent debdee0 commit 0b0dd76

File tree

100 files changed

+8250
-6111
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+8250
-6111
lines changed

CHANGELOG.md

Lines changed: 270 additions & 427 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ First of all, thanks for taking interest into contributing to this repository, b
66

77
Fork the repository, or clone it:
88

9-
```bash
9+
```sh
1010
git clone https://github.com/logaretm/vee-validate.git
1111
```
1212

1313
Install dependencies using [yarn](https://yarnpkg.com)
1414

15-
```bash
15+
```sh
1616
yarn
1717
```
1818

@@ -38,7 +38,7 @@ The docs are using `Nuxt` and `nuxt/content` module, the content itself is prese
3838

3939
To run the documentation locally:
4040

41-
```bash
41+
```sh
4242
yarn docs:dev
4343
# or
4444
npm run docs:dev
@@ -69,15 +69,15 @@ Each test file represents a unit test to the corresponding file in the src folde
6969

7070
To run the tests:
7171

72-
```bash
72+
```sh
7373
yarn test
7474
# or
7575
npm run test
7676
```
7777

7878
To check the tests coverage:
7979

80-
```bash
80+
```sh
8181
yarn cover
8282
# or
8383
npm run cover
@@ -91,7 +91,7 @@ this project uses mono-repo style using [lerna](https://github.com/lerna/lerna).
9191

9292
Use this command to build all project bundles
9393

94-
```bash
94+
```sh
9595
yarn build
9696
# or
9797
npm run build

docs/_redirects

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/guide/validation /v4/guide/components/validation
33
/guide/handling-forms /v4/guide/components/handling-forms
44
/guide/nested-objects-and-arrays /v4/guide/components/nested-objects-and-arrays
5+
/tutorials/best-practices /v4/guide/best-practices

docs/assets/css/app.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,38 @@ body {
2323
:root {
2424
--accent: #09a884;
2525

26+
--code-foreground: #2c3e50;
27+
--code-background: #f6f6f6;
28+
--code-token-constant: #c25205;
29+
--code-token-operator: #b2085f;
30+
--code-token-type: #b92dbc;
31+
--code-token-parameter: #2c3e50;
32+
--code-token-attribute: #c25205;
33+
--code-token-regex: #ff9580;
34+
--code-token-string: #0a7a34;
35+
--code-token-comment: #848486;
36+
--code-line-numbers: #bbbbbb;
37+
--code-line-highlight: #f8f4e4;
38+
--code-line-highlight-border: #b92dbc;
39+
--code-lang-label: #bbbbbb;
40+
2641
.dark {
2742
--accent: #09a884;
43+
44+
--code-foreground: #f8f8f2;
45+
--code-background: #22212c;
46+
--code-token-constant: #9580ff;
47+
--code-token-operator: #ff80bf;
48+
--code-token-type: #80ffea;
49+
--code-token-parameter: #ffca80;
50+
--code-token-attribute: #8aff80;
51+
--code-token-regex: #ff9580;
52+
--code-token-string: #ffff80;
53+
--code-token-comment: #7970a9;
54+
--code-line-numbers: #7970a9;
55+
--code-line-highlight: #16171d;
56+
--code-line-highlight-border: #7970a9;
57+
--code-lang-label: #7970a9;
2858
}
2959
}
3060

0 commit comments

Comments
 (0)