@unlk/keymaster 1.3.1 → 1.3.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/CHANGELOG.md +10 -0
- package/README.md +3 -3
- package/dist/css/keymaster.css +5 -0
- package/dist/css/keymaster.css.map +1 -1
- package/dist/css/keymaster.min.css +4 -0
- 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 +2 -1
- package/scss/keymaster.scss +3 -1
- package/scss/theme/_version.scss +2 -0
- package/scss/theme/mixins/_banner.scss +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.3.3] - 2025-11-21
|
|
6
|
+
|
|
7
|
+
### Add
|
|
8
|
+
- Keymaster Version to generated CSS
|
|
9
|
+
|
|
10
|
+
## [1.3.2] - 2025-11-20
|
|
11
|
+
|
|
12
|
+
### Update
|
|
13
|
+
- Readme
|
|
14
|
+
|
|
5
15
|
## [1.3.1] - 2025-11-20
|
|
6
16
|
|
|
7
17
|
### Fix
|
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ The design system has a few dependencies that you will need to install before yo
|
|
|
68
68
|
* [Bootstrap 5](https://getbootstrap.com/docs/)
|
|
69
69
|
* [Sass](https://sass-lang.com/) (Optional: If you want to compile the Sass files yourself.)
|
|
70
70
|
|
|
71
|
-
|
|
71
|
+
Keymaster also requires you to have [Bootstrap 5](https://getbootstrap.com/docs/) installed in your project as a peer-dependency.
|
|
72
72
|
If you do not have Bootstrap 5 installed, you can install it with the following command:
|
|
73
73
|
|
|
74
74
|
```sh
|
|
@@ -119,7 +119,7 @@ Alternatively, if you want to use the precompiled css, you can import the compil
|
|
|
119
119
|
|
|
120
120
|
Compiled CSS can be loaded from CDN as well
|
|
121
121
|
```html
|
|
122
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@unlk/keymaster/dist/css/keymaster.min.css"/>
|
|
122
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@unlk/keymaster/dist/css/keymaster.min.css" crossorigin="anonymous"/>
|
|
123
123
|
```
|
|
124
124
|
|
|
125
125
|
You will also need to import the keymaster's javascript dependencies into your project.
|
|
@@ -130,7 +130,7 @@ import '@unlk/keymaster/js/bootstrap.js';
|
|
|
130
130
|
|
|
131
131
|
Compiled JS can be loaded from CDN as well
|
|
132
132
|
```html
|
|
133
|
-
<
|
|
133
|
+
<script src="https://cdn.jsdelivr.net/npm/@unlk/keymaster/dist/js/keymaster.min.js" crossorigin="anonymous"></script>
|
|
134
134
|
```
|
|
135
135
|
|
|
136
136
|
<p align="right">(<a href="#readme-top">back to top</a>)</p>
|
package/dist/css/keymaster.css
CHANGED
|
@@ -21865,6 +21865,11 @@
|
|
|
21865
21865
|
--fa: "\f8e8";
|
|
21866
21866
|
}
|
|
21867
21867
|
|
|
21868
|
+
/*!
|
|
21869
|
+
* Keymaster v1.3.3 (https://unlock-com.github.io/keymaster)
|
|
21870
|
+
* Copyright 2022-2025 Unlk Developers
|
|
21871
|
+
* Licensed under MIT
|
|
21872
|
+
*/
|
|
21868
21873
|
/*!
|
|
21869
21874
|
* Bootstrap v5.3.8 (https://getbootstrap.com/)
|
|
21870
21875
|
* Copyright 2011-2025 The Bootstrap Authors
|