@chayns-components/gallery 5.0.0-beta.189 → 5.0.0-beta.192
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/README.md +6 -11
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
|
|
16
16
|
## Installation
|
|
17
17
|
|
|
18
|
-
First you need to install the
|
|
18
|
+
First you need to install the gallery part of the chayns-components.
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
21
|
# NPM
|
|
22
|
-
npm install @chayns-components/
|
|
22
|
+
npm install @chayns-components/gallery
|
|
23
23
|
|
|
24
24
|
# Yarn
|
|
25
|
-
yarn add @chayns-components/
|
|
25
|
+
yarn add @chayns-components/gallery
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
> **Information:** Since the components have now been implemented with the styled-components
|
|
@@ -34,12 +34,7 @@ yarn add @chayns-components/typewriter
|
|
|
34
34
|
You can use the components in your project as in the following example.
|
|
35
35
|
|
|
36
36
|
```typescript jsx
|
|
37
|
-
import {
|
|
38
|
-
|
|
39
|
-
<
|
|
40
|
-
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt
|
|
41
|
-
ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo
|
|
42
|
-
dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est. Lorem ipsum dolor
|
|
43
|
-
sit amet.
|
|
44
|
-
</Typewriter>;
|
|
37
|
+
import { Gallery } from '@chayns-components/gallery';
|
|
38
|
+
|
|
39
|
+
<Gallery />;
|
|
45
40
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chayns-components/gallery",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.192",
|
|
4
4
|
"description": "A set of beautiful React components for developing your own applications with chayns.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"chayns",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"typescript": "^4.9.5"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@chayns-components/core": "^5.0.0-beta.
|
|
53
|
+
"@chayns-components/core": "^5.0.0-beta.192",
|
|
54
54
|
"@chayns/colors": "^2.0.0",
|
|
55
55
|
"clsx": "^1.2.1",
|
|
56
56
|
"framer-motion": "^6.5.1",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "785e47e3710f1208fbdfd6c328b8954010e30b53"
|
|
68
68
|
}
|