@rebilly/revel 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,35 @@
1
+ ## [4.0.0](https://github.com/Rebilly/rebilly/compare/revel-v3.0.0...revel-v4.0.0) (2023-04-26)
2
+
3
+
4
+ ### ⚠ BREAKING CHANGES
5
+
6
+ * **revel:** Update library name to Revel (#178)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **revel:** Update library name to Revel ([#178](https://github.com/Rebilly/rebilly/issues/178)) ([a7dd0d6](https://github.com/Rebilly/rebilly/commit/a7dd0d6cd3bb1ada4b77b88252a93017da50ab8f))
11
+
12
+ ## [3.0.0](https://github.com/Rebilly/rebilly/compare/revel-v2.6.0...revel-v3.0.0) (2023-04-19)
13
+
14
+
15
+ ### ⚠ BREAKING CHANGES
16
+
17
+ * **revel:** Update spaces variables and helpers (#132)
18
+
19
+ ### Features
20
+
21
+ * Migrate kyc-document-gatherer-vue3 ([#99](https://github.com/Rebilly/rebilly/issues/99)) ([06596dc](https://github.com/Rebilly/rebilly/commit/06596dce43efda66b7945dfcd88b20da617622d4)), closes [#48](https://github.com/Rebilly/rebilly/issues/48) [#45](https://github.com/Rebilly/rebilly/issues/45)
22
+ * **revel:** Update spaces variables and helpers ([#132](https://github.com/Rebilly/rebilly/issues/132)) ([d45be29](https://github.com/Rebilly/rebilly/commit/d45be29415c72e4b887ea90661136fe0856b3330))
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **revel:** Force version bump and rename from `recomponents-next` ([#142](https://github.com/Rebilly/rebilly/issues/142)) ([1972c7e](https://github.com/Rebilly/rebilly/commit/1972c7eff197204a212c94a70bde2d59e47a88f1))
28
+ * **revert): "fix(revel:** Force version bump and rename from `recomponents-… ([#144](https://github.com/Rebilly/rebilly/issues/144)) ([cc68246](https://github.com/Rebilly/rebilly/commit/cc6824639dc8f4823a3e76a6205262bc12665931)), closes [#142](https://github.com/Rebilly/rebilly/issues/142)
29
+
30
+ ## [2.6.0](https://github.com/Rebilly/rebilly/compare/revel-v2.5.0...revel-v2.6.0) (2023-03-30)
31
+
32
+
33
+ ### Features
34
+
35
+ * **revel:** Update library to use color tokens ([#89](https://github.com/Rebilly/rebilly/issues/89)) ([0e8de67](https://github.com/Rebilly/rebilly/commit/0e8de67dee7777ef79754f95e617e527d8c72021))
package/README.md ADDED
@@ -0,0 +1,60 @@
1
+ <p align="center">
2
+ <a href="https://rebilly.github.io/revel">
3
+ <img alt="Revel" width="300" src="https://user-images.githubusercontent.com/1580169/211651583-03750a4c-71d9-4b2f-9af8-16d48b790e06.png">
4
+ </a>
5
+ </p>
6
+
7
+ # Revel
8
+ ### Design and develop clean, elegant, and performant Rebilly experiences.
9
+ ---
10
+ <p>
11
+ <a href="https://rebilly.github.io/revel">
12
+ View Documentation
13
+ </a>
14
+ </p>
15
+
16
+ <p>
17
+ <a href="https://www.npmjs.com/package/@rebilly/revel">
18
+ <img alt="npm latest version" src="https://img.shields.io/npm/v/@rebilly/revel/latest.svg">
19
+ </a>
20
+ <a href="https://github.com/semantic-release/semantic-release">
21
+ <img alt="semantic-release: conventional commits" src="https://img.shields.io/badge/semantic--release-conventional%20commits-e10079?logo=semantic-release">
22
+ </a>
23
+ <a href="https://github.com/Rebilly/revel/actions/workflows/release.yml">
24
+ <img alt="Release status" src="https://github.com/Rebilly/revel/actions/workflows/release.yml/badge.svg">
25
+ </a>
26
+ </p>
27
+
28
+ ## About this repo
29
+ Revel is the design system used by designers and developers at Rebilly to build clean, elegant, and performant experiences for its merchants.
30
+
31
+ ## Commands
32
+ ### Install dependecies and start development
33
+ ```
34
+ yarn && yarn docs:dev
35
+ ```
36
+
37
+ ### Commands
38
+ Command | Description
39
+ -|-
40
+ `dev` | Run the dev server for the component documentation. See `docs:dev`.
41
+ `docs:dev` | Run the dev server for the component documentation.
42
+ `docs:build` | Build component documentation as a static HTML site.
43
+ `build` | Build the library.
44
+ `build:watch` | Build the library and rebuild on file changes.
45
+ `playground:dev` | Run the playground dev server (see [Playground](#playground)).
46
+ `lint:no-fix` | Run eslint.
47
+ `lint:fix` | Run eslint and automatically fix issues.
48
+ `test:unit` | Run the unit tests.
49
+ `test:unit:watch` | Run the unit tests on changed files, in watch mode.
50
+
51
+ ### Playground
52
+ Sometimes it is easier to test a complex configuration directly in a vue application, rather than through our vuepress documentation.
53
+
54
+ For this, we provide a playground server which can be run with:
55
+ ```
56
+ yarn playground:dev
57
+ ```
58
+
59
+ Note: You must copy the playground component file
60
+ `/src/playground/Playground-copyme.vue` to `Playground.vue`.
Binary file