@hopper-ui/tokens 0.1.0-beta.0 → 0.1.2-beta.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/README.md +2 -2
- package/dist/tokens.css +1 -1
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -32,12 +32,12 @@ npm install -D @hopper-ui/tokens
|
|
|
32
32
|
The tokens are available in the `dist` folder. You can import the tokens in your project by doing:
|
|
33
33
|
|
|
34
34
|
```css
|
|
35
|
-
@import '@hopper-ui/tokens/
|
|
35
|
+
@import '@hopper-ui/tokens/tokens.css';
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
for the dark mode, you can import them by doing:
|
|
39
39
|
```css
|
|
40
|
-
@import '@hopper-ui/tokens/
|
|
40
|
+
@import '@hopper-ui/tokens/dark/tokens.css';
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
## License
|
package/dist/tokens.css
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hopper-ui/tokens",
|
|
3
3
|
"author": "Workleap",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2-beta.0",
|
|
5
5
|
"description": "The tokens package.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
@@ -20,10 +20,9 @@
|
|
|
20
20
|
},
|
|
21
21
|
"type": "module",
|
|
22
22
|
"exports": {
|
|
23
|
-
"./dist/"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
23
|
+
"./tokens.css": "./dist/tokens.css",
|
|
24
|
+
"./fonts.css": "./dist/fonts.css",
|
|
25
|
+
"./dark/tokens.css": "./dist/dark/tokens.css"
|
|
27
26
|
},
|
|
28
27
|
"files": [
|
|
29
28
|
"dist",
|