ada-ui 3.0.0 → 3.0.1

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.
Files changed (2) hide show
  1. package/README.md +17 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,16 +4,24 @@
4
4
 
5
5
  ## CDN
6
6
 
7
- ~~~
8
- https://cdn.jsdelivr.net/gh/tklepzig/Ada@version/css/ada.min.css
9
- ~~~
7
+ https://cdn.jsdelivr.net/gh/tklepzig/Ada@version/css/ada.min.css
8
+
10
9
  Replace `version` with the version of your desired release, see https://github.com/tklepzig/Ada/releases (e.g. `2.9.0`)
10
+
11
+ > Attention: Beginning with version 3.0, the filenames don't contain `min` any longer. So the URL should be
12
+ >
13
+ > https://cdn.jsdelivr.net/gh/tklepzig/Ada@3.0.0/css/ada.css
14
+
11
15
  ## Install
12
16
 
13
- ~~~
14
- npm install ada-ui --save
15
- ~~~
17
+ # Using npm
18
+ npm install ada-ui --save
19
+
20
+ # Using yarn
21
+ yarn add ada-ui
22
+
23
+ ## Select a Theme
24
+
25
+ Beginning with version 3.0.0, you can choose between different themes. When using the CSS, ensure to include the correct theme file before the main one, e.g.:
16
26
 
17
- ~~~
18
- yarn add ada-ui
19
- ~~~
27
+ https://cdn.jsdelivr.net/gh/tklepzig/Ada@3.0.0/css/ada.blue.css
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ada-ui",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "scripts": {
5
5
  "dev": "sass scss:css --watch",
6
6
  "build": "rm -rf css && sass scss:css -s compressed --no-source-map"