@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 CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.3.1] - 2025-11-20
6
+
7
+ ### Fix
8
+ - Ketch Styles
9
+
5
10
  ## [1.3.0] - 2025-11-17
6
11
 
7
12
  ### Fix
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
- ```scss
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 -->