@unlk/keymaster 1.0.3 → 1.0.5
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 +15 -1
- package/README.md +4 -3
- package/dist/css/keymaster.css +205 -242
- package/dist/css/keymaster.css.map +1 -1
- package/dist/css/keymaster.min.css +2 -2
- 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 -8
- package/scss/keymaster.scss +2 -0
- package/scss/theme/_forms.scss +1 -0
- package/scss/theme/_root.scss +6 -0
- package/scss/theme/_variables-overrides.scss +17 -5
- package/scss/theme/_variables.scss +0 -1
- package/scss/theme/forms/_form-control.scss +3 -0
- package/images/unlock.svg +0 -9
package/dist/js/keymaster.js
CHANGED
package/dist/js/keymaster.min.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Unlock Keymaster v1.0.
|
2
|
+
* Unlock Keymaster v1.0.5 (https://unlock-com.github.io/keymaster)
|
3
3
|
* Copyright 2022-2025 Unlk Developers
|
4
4
|
*/
|
5
5
|
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).keymaster={})}(this,(function(t){"use strict";"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;function e(t){if(t.__esModule)return t;var e=Object.defineProperty({},"__esModule",{value:!0});return Object.keys(t).forEach((function(i){var n=Object.getOwnPropertyDescriptor(t,i);Object.defineProperty(e,i,n.get?n:{enumerable:!0,get:function(){return t[i]}})})),e}var i={exports:{}},n={exports:{}},s={exports:{}};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@unlk/keymaster",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.5",
|
4
4
|
"publishConfig": {
|
5
5
|
"access": "public"
|
6
6
|
},
|
@@ -33,8 +33,7 @@
|
|
33
33
|
"js",
|
34
34
|
"fonts",
|
35
35
|
"README.md",
|
36
|
-
"CHANGELOG.md"
|
37
|
-
"images"
|
36
|
+
"CHANGELOG.md"
|
38
37
|
],
|
39
38
|
"engines": {
|
40
39
|
"node": ">=14"
|
@@ -77,10 +76,5 @@
|
|
77
76
|
"rollup": "^2.60.2",
|
78
77
|
"sass": "^1.87.0",
|
79
78
|
"terser": "^5.10.0"
|
80
|
-
},
|
81
|
-
"config": {
|
82
|
-
"commitizen": {
|
83
|
-
"path": "./node_modules/cz-conventional-changelog"
|
84
|
-
}
|
85
79
|
}
|
86
80
|
}
|
package/scss/keymaster.scss
CHANGED
@@ -23,6 +23,7 @@
|
|
23
23
|
|
24
24
|
// Theme
|
25
25
|
@import "theme/variables";
|
26
|
+
@import "theme/root";
|
26
27
|
@import "theme/type";
|
27
28
|
@import "theme/buttons";
|
28
29
|
@import "theme/accordion";
|
@@ -32,3 +33,4 @@
|
|
32
33
|
@import "theme/spinners";
|
33
34
|
@import "theme/modal";
|
34
35
|
@import "theme/close";
|
36
|
+
@import "theme/forms";
|
@@ -0,0 +1 @@
|
|
1
|
+
@import "forms/form-control";
|
@@ -1,7 +1,6 @@
|
|
1
1
|
@import "../assets/bootstrap5/functions";
|
2
|
-
@import "../assets/bootstrap5/variables";
|
3
2
|
|
4
|
-
$
|
3
|
+
$prefix: bs-;
|
5
4
|
$enable-validation-icons: false;
|
6
5
|
|
7
6
|
// Fontawesome
|
@@ -337,11 +336,11 @@ $body-color: $foundation-500;
|
|
337
336
|
// Headings
|
338
337
|
$headings-color: $foundation-500;
|
339
338
|
$headings-font-family: "Neulis Neue";
|
340
|
-
$headings-font-weight: $font-weight-medium;
|
339
|
+
$headings-font-weight: var(--#{$prefix}font-weight-medium);
|
341
340
|
|
342
341
|
// Display Headings
|
343
342
|
$display-font-family: "Neulis Neue";
|
344
|
-
$display-font-weight: $font-weight-medium;
|
343
|
+
$display-font-weight: var(--#{$prefix}font-weight-medium);
|
345
344
|
$display-line-height: 1.1;
|
346
345
|
|
347
346
|
$font-sizes: (
|
@@ -370,6 +369,7 @@ $table-variants: (
|
|
370
369
|
|
371
370
|
// Borders
|
372
371
|
$border-width: 2px;
|
372
|
+
$border-color: $gray-400;
|
373
373
|
|
374
374
|
// Buttons + Forms
|
375
375
|
$input-btn-border-width: .125rem;
|
@@ -395,9 +395,9 @@ $blockquote-font-size: $font-size-base * 3.5;
|
|
395
395
|
|
396
396
|
// Accordion
|
397
397
|
$accordion-border-radius: var(--#{$prefix}border-radius-sm);
|
398
|
-
$accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width);
|
399
398
|
$accordion-button-active-bg: var(--#{$prefix}primary);
|
400
399
|
$accordion-button-active-color: var(--#{$prefix}light);
|
400
|
+
$accordion-icon-color: $body-color;
|
401
401
|
$accordion-icon-active-color: $light;
|
402
402
|
$accordion-button-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='#{$accordion-icon-color}'><path d='M11.1,18.3c0.5,0.5,1.4,0.5,1.9,0L23.6,7.6c0.5-0.5,0.5-1.4,0-1.9c-0.5-0.5-1.4-0.5-1.9,0L12,15.5L2.3,5.7c-0.5-0.5-1.4-0.5-1.9,0s-0.5,1.4,0,1.9L11.1,18.3z'/></svg>");
|
403
403
|
$accordion-button-active-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='#{$accordion-icon-active-color}'><path d='M11.1,18.3c0.5,0.5,1.4,0.5,1.9,0L23.6,7.6c0.5-0.5,0.5-1.4,0-1.9c-0.5-0.5-1.4-0.5-1.9,0L12,15.5L2.3,5.7c-0.5-0.5-1.4-0.5-1.9,0s-0.5,1.4,0,1.9L11.1,18.3z'/></svg>");
|
@@ -422,3 +422,15 @@ $carousel-control-next-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w
|
|
422
422
|
|
423
423
|
// Tooltips
|
424
424
|
$tooltip-bg: var(--#{$prefix}primary);
|
425
|
+
|
426
|
+
// Progress
|
427
|
+
$progress-border-radius: var(--#{$prefix}border-radius-xs);
|
428
|
+
|
429
|
+
// Inputs
|
430
|
+
$input-border-color: $gray-600;
|
431
|
+
$input-placeholder-color: $gray-600;
|
432
|
+
$input-focus-border-color: $tertiary;
|
433
|
+
$input-focus-box-shadow: 0 0 0 .25rem rgba($tertiary, .75);
|
434
|
+
$input-border-radius: var(--#{$prefix}border-radius-xs);
|
435
|
+
$input-border-radius-sm: var(--#{$prefix}border-radius-xs);
|
436
|
+
$input-border-radius-lg: var(--#{$prefix}border-radius-sm);
|
package/images/unlock.svg
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
<svg width="54" height="88" viewBox="0 0 54 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M42.5456 70.7213H53.182L31.9092 42.5022H21.2728L42.5456 70.7213Z" fill="#CBEBF8"/>
|
3
|
-
<path d="M42.5456 70.7213H31.9092V88H42.5456V70.7213Z" fill="#CBEBF8"/>
|
4
|
-
<path d="M31.9092 70.7213H42.5456L21.2728 42.5022H10.6364L31.9092 70.7213Z" fill="#66CDF3"/>
|
5
|
-
<path d="M31.9092 70.7213V88H21.2728V70.7213H31.9092Z" fill="#66CDF3"/>
|
6
|
-
<path d="M21.2728 70.7213H31.9092L10.6364 42.5022V21.2728C10.6364 15.4119 15.4119 10.6364 21.2728 10.6364C27.1337 10.6364 31.9092 15.4119 31.9092 21.2728V25.701H42.5456V21.2728C42.5456 9.50765 33.038 0 21.2728 0C9.50765 0 0.0434132 9.50765 0.0434132 21.2294V42.4588L21.2728 70.7213Z" fill="#3A7BBE"/>
|
7
|
-
<path d="M21.2728 70.7213V88H16.2802C14.2832 88 12.4164 87.6527 10.6364 87.0015V70.7213H21.2728Z" fill="#3A7BBE"/>
|
8
|
-
<path d="M0.0434139 42.5022L21.2728 70.7647H10.6364V87.0449C4.42822 84.744 0 78.7962 0 71.8066V42.4154V42.5022H0.0434139Z" fill="#3E51A2"/>
|
9
|
-
</svg>
|