@unlk/keymaster 1.4.1 → 1.4.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 +1 -1
- package/dist/css/keymaster.css +115 -17
- package/dist/css/keymaster.css.map +1 -1
- package/dist/css/keymaster.min.css +12 -12
- package/dist/css/keymaster.min.css.map +1 -1
- package/dist/js/keymaster.js +58 -58
- package/dist/js/keymaster.min.js +4 -4
- package/dist/js/keymaster.min.js.map +1 -1
- package/package.json +5 -5
- package/scss/theme/_root.scss +7 -0
- package/scss/theme/_variables-overrides.scss +1 -1
- package/scss/theme/_version.scss +1 -1
- package/scss/theme/mixins/_banner.scss +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unlk/keymaster",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
],
|
|
49
49
|
"author": "Unlk Developers",
|
|
50
50
|
"license": "UNLICENSED",
|
|
51
|
-
"homepage": "https://unlock
|
|
51
|
+
"homepage": "https://keymaster.unlock.com",
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"@popperjs/core": "^2.11.0",
|
|
54
54
|
"bootstrap": "^5.3.0"
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"@babel/preset-env": "^7.27.2",
|
|
59
59
|
"@fortawesome/fontawesome-pro": "^7.0.0",
|
|
60
60
|
"@popperjs/core": "^2.11.8",
|
|
61
|
-
"@rollup/plugin-babel": "^
|
|
62
|
-
"@rollup/plugin-commonjs": "^
|
|
63
|
-
"@rollup/plugin-multi-entry": "^
|
|
61
|
+
"@rollup/plugin-babel": "^7.0.0",
|
|
62
|
+
"@rollup/plugin-commonjs": "^29.0.2",
|
|
63
|
+
"@rollup/plugin-multi-entry": "^7.1.0",
|
|
64
64
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
65
65
|
"@rollup/plugin-replace": "^6.0.2",
|
|
66
66
|
"autoprefixer": "^10.4.21",
|
package/scss/theme/_root.scss
CHANGED
|
@@ -3,4 +3,11 @@
|
|
|
3
3
|
--#{$prefix}border-radius-xs: #{$border-radius-xs};
|
|
4
4
|
--#{$prefix}font-weight-medium: #{$font-weight-medium};
|
|
5
5
|
--#{$prefix}font-weight-bold: #{$font-weight-bold};
|
|
6
|
+
$non-gray-colors: $all-colors;
|
|
7
|
+
@each $key, $value in $grays {
|
|
8
|
+
$non-gray-colors: map-remove($non-gray-colors, $key);
|
|
9
|
+
}
|
|
10
|
+
@each $color, $value in $non-gray-colors {
|
|
11
|
+
--#{$prefix}#{$color}: #{$value};
|
|
12
|
+
}
|
|
6
13
|
}
|
|
@@ -373,7 +373,7 @@ $input-btn-border-width: .125rem !default;
|
|
|
373
373
|
$input-focus-border-color: $component-active-bg !default;
|
|
374
374
|
|
|
375
375
|
// Buttons
|
|
376
|
-
$btn-font-weight:
|
|
376
|
+
$btn-font-weight: 500 !default;
|
|
377
377
|
$btn-hover-bg-shade-amount: 20% !default;
|
|
378
378
|
$btn-hover-bg-tint-amount: 10% !default;
|
|
379
379
|
$btn-hover-border-shade-amount: 20% !default;
|
package/scss/theme/_version.scss
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// GENERATED FILE – do not edit manually
|
|
2
|
-
$km-version: "1.4.
|
|
2
|
+
$km-version: "1.4.3" !default;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// Keymaster override for Bootstrap banner
|
|
4
4
|
@mixin bsBanner($file) {
|
|
5
5
|
/*!
|
|
6
|
-
* Keymaster #{$file} v#{$km-version} (https://unlock
|
|
6
|
+
* Keymaster #{$file} v#{$km-version} (https://keymaster.unlock.com)
|
|
7
7
|
* Copyright 2022-2025 Unlk Developers
|
|
8
8
|
* Licensed under MIT
|
|
9
9
|
*/
|