@unlk/keymaster 1.3.0 → 1.3.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.
- package/CHANGELOG.md +5 -0
- package/README.md +11 -1
- package/dist/css/keymaster.css +295 -94
- package/dist/css/keymaster.css.map +1 -1
- package/dist/css/keymaster.min.css +1 -1
- package/dist/css/keymaster.min.css.map +1 -1
- package/dist/js/keymaster.js +1 -1
- package/dist/js/keymaster.min.js +1 -1
- package/package.json +1 -1
- package/scss/keymaster.scss +1 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -113,16 +113,26 @@ This will import all of keymaster's styles and variables into your project.
|
|
|
113
113
|
|
|
114
114
|
Alternatively, if you want to use the precompiled css, you can import the compiled css file into your project.
|
|
115
115
|
|
|
116
|
-
```
|
|
116
|
+
```css
|
|
117
117
|
@import '@unlk/keymaster/dist/css/keymaster.css';
|
|
118
118
|
```
|
|
119
119
|
|
|
120
|
+
Compiled CSS can be loaded from CDN as well
|
|
121
|
+
```html
|
|
122
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@unlk/keymaster/dist/css/keymaster.min.css"/>
|
|
123
|
+
```
|
|
124
|
+
|
|
120
125
|
You will also need to import the keymaster's javascript dependencies into your project.
|
|
121
126
|
|
|
122
127
|
```js
|
|
123
128
|
import '@unlk/keymaster/js/bootstrap.js';
|
|
124
129
|
```
|
|
125
130
|
|
|
131
|
+
Compiled JS can be loaded from CDN as well
|
|
132
|
+
```html
|
|
133
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@unlk/keymaster/dist/js/keymaster.min.js"/>
|
|
134
|
+
```
|
|
135
|
+
|
|
126
136
|
<p align="right">(<a href="#readme-top">back to top</a>)</p>
|
|
127
137
|
|
|
128
138
|
<!-- MARKDOWN LINKS & IMAGES -->
|