@hopper-ui/components 0.0.0 → 0.0.2
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 +15 -0
- package/README.md +40 -0
- package/package.json +20 -16
package/CHANGELOG.md
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# @hopper-ui/components
|
|
2
|
+
|
|
3
|
+
Hopper is a design system developed by Workleap to help create the best experience for our customers and drive consistency between all our web apps.
|
|
4
|
+
|
|
5
|
+
[](../../LICENSE)
|
|
6
|
+
[](https://www.npmjs.com/package/@hopper-ui/components)
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
Install the following packages:
|
|
11
|
+
|
|
12
|
+
**With pnpm**
|
|
13
|
+
|
|
14
|
+
```shell
|
|
15
|
+
pnpm add @hopper-ui/components
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
**With yarn**
|
|
19
|
+
|
|
20
|
+
```shell
|
|
21
|
+
yarn add -D @hopper-ui/components
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
**With npm**
|
|
25
|
+
|
|
26
|
+
```shell
|
|
27
|
+
npm install -D @hopper-ui/components
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Usage
|
|
31
|
+
|
|
32
|
+
View the [user's documentation](https://hopper.workleap.design/).
|
|
33
|
+
|
|
34
|
+
## 🤝 Contributing
|
|
35
|
+
|
|
36
|
+
View the [contributor's documentation](https://github.com/gsoft-inc/wl-hopper/blob/main/CONTRIBUTING.md).
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
Copyright © 2023, Workleap. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/workleap-license/blob/master/LICENSE.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hopper-ui/components",
|
|
3
3
|
"author": "Workleap",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.2",
|
|
5
5
|
"description": "The components package.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
@@ -17,8 +17,15 @@
|
|
|
17
17
|
"sideEffects": [
|
|
18
18
|
"*.css"
|
|
19
19
|
],
|
|
20
|
-
"
|
|
21
|
-
"types": "
|
|
20
|
+
"main": "dist/index.js",
|
|
21
|
+
"types": "dist/index.d.ts",
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"import": "./dist/index.js",
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"default": "./dist/index.js"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
22
29
|
"files": [
|
|
23
30
|
"/dist",
|
|
24
31
|
"CHANGELOG.md",
|
|
@@ -29,34 +36,31 @@
|
|
|
29
36
|
"react-dom": "*"
|
|
30
37
|
},
|
|
31
38
|
"dependencies": {
|
|
32
|
-
"@hopper-ui/styled-system": "0.
|
|
39
|
+
"@hopper-ui/styled-system": "0.2.0"
|
|
33
40
|
},
|
|
34
41
|
"devDependencies": {
|
|
35
|
-
"@swc/core": "1.3.
|
|
42
|
+
"@swc/core": "1.3.96",
|
|
36
43
|
"@swc/helpers": "0.5.3",
|
|
37
44
|
"@swc/jest": "0.2.29",
|
|
38
45
|
"@testing-library/jest-dom": "6.1.4",
|
|
39
|
-
"@testing-library/react": "14.
|
|
40
|
-
"@types/jest": "29.5.
|
|
41
|
-
"@types/react": "18.2.
|
|
42
|
-
"@types/react-
|
|
43
|
-
"@types/react
|
|
46
|
+
"@testing-library/react": "14.1.0",
|
|
47
|
+
"@types/jest": "29.5.8",
|
|
48
|
+
"@types/react-dom": "18.2.15",
|
|
49
|
+
"@types/react-test-renderer": "18.0.6",
|
|
50
|
+
"@types/react": "18.2.37",
|
|
44
51
|
"@workleap/eslint-plugin": "3.0.0",
|
|
45
52
|
"@workleap/swc-configs": "2.1.2",
|
|
53
|
+
"@workleap/tsup-configs": "3.0.1",
|
|
46
54
|
"@workleap/typescript-configs": "3.0.2",
|
|
47
|
-
"jest": "29.7.0",
|
|
48
55
|
"jest-environment-jsdom": "29.7.0",
|
|
49
|
-
"
|
|
56
|
+
"jest": "29.7.0",
|
|
50
57
|
"react-dom": "18.2.0",
|
|
51
58
|
"react-test-renderer": "18.2.0",
|
|
59
|
+
"react": "18.2.0",
|
|
52
60
|
"ts-jest": "29.1.1",
|
|
53
|
-
"ts-node": "10.9.1",
|
|
54
61
|
"tsup": "7.2.0",
|
|
55
62
|
"typescript": "5.2.2"
|
|
56
63
|
},
|
|
57
|
-
"engines": {
|
|
58
|
-
"node": ">=18.0.0"
|
|
59
|
-
},
|
|
60
64
|
"scripts": {
|
|
61
65
|
"dev": "tsup --config ./tsup.dev.ts",
|
|
62
66
|
"build": "tsup --config ./tsup.build.ts",
|