effcss 1.1.2 → 1.1.3
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 +24 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,16 +1,36 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://effcss.surge.sh">
|
|
3
|
+
<img alt="effcss" src="https://effcss.surge.sh/logo.svg" height="72px" />
|
|
4
|
+
</a>
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
<h1 align="center">Effcss</h1>
|
|
8
|
+
|
|
9
|
+
<div align="center">
|
|
10
|
+
|
|
11
|
+
[](https://gitverse.ru/msabitov/effcss/content/master/LICENSE)
|
|
12
|
+
[](https://www.npmjs.com/package/effcss)
|
|
13
|
+
|
|
14
|
+
</div>
|
|
2
15
|
|
|
3
16
|
Effcss is a next generation CSS-in-JS library based only on the browser APIs.
|
|
4
17
|
|
|
18
|
+
## Links
|
|
19
|
+
|
|
20
|
+
- [Docs](https://effcss.surge.sh)
|
|
21
|
+
- [Repository](https://gitverse.ru/msabitov/effcss)
|
|
22
|
+
- [Github mirror](https://github.com/msabitov/effcss)
|
|
23
|
+
- [React demo](https://stackblitz.com/edit/vitejs-react-effcss?file=index.html)
|
|
24
|
+
- [Svelte demo](https://stackblitz.com/edit/vitejs-svelte-effcss?file=index.html)
|
|
25
|
+
|
|
5
26
|
## Some features
|
|
6
27
|
|
|
7
28
|
- zero-dependency
|
|
8
29
|
- framework agnostic
|
|
9
|
-
- customizable
|
|
10
30
|
- runtime stylesheets generation
|
|
11
31
|
- built-in BEM support
|
|
12
|
-
-
|
|
13
|
-
- support
|
|
32
|
+
- customizable
|
|
33
|
+
- support style switching
|
|
14
34
|
|
|
15
35
|
## Installation
|
|
16
36
|
|
|
@@ -20,16 +40,6 @@ Install it from npm:
|
|
|
20
40
|
npm i effcss
|
|
21
41
|
```
|
|
22
42
|
|
|
23
|
-
## Usage example
|
|
24
|
-
|
|
25
|
-
See simple usage example in `demo` folder.
|
|
26
|
-
You can also open demo React project on [StackBlitz](https://stackblitz.com/edit/vitejs-react-effcss?file=index.html).
|
|
27
|
-
There is also demo Svelte project on [StackBlitz](https://stackblitz.com/edit/vitejs-svelte-effcss?file=index.html).
|
|
28
|
-
|
|
29
|
-
## Docs
|
|
30
|
-
|
|
31
|
-
The documentation is currently under active development, you can find the current version on the project's [homepage](https://effcss.surge.sh).
|
|
32
|
-
|
|
33
43
|
## Concepts
|
|
34
44
|
|
|
35
45
|
Effcss consists of two parts - **style provider** and **style config**.
|