@unlk/keymaster 1.1.5 → 1.1.6
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/dist/css/keymaster.css +72 -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/fonts/fa-duotone-900.woff2 +0 -0
- package/fonts/fa-duotone-light-300.woff2 +0 -0
- package/fonts/fa-duotone-regular-400.woff2 +0 -0
- package/fonts/fa-duotone-thin-100.woff2 +0 -0
- package/fonts/fa-light-300.woff2 +0 -0
- package/fonts/fa-regular-400.woff2 +0 -0
- package/fonts/fa-sharp-duotone-regular-400.woff2 +0 -0
- package/fonts/fa-sharp-duotone-solid-900.woff2 +0 -0
- package/fonts/fa-sharp-regular-400.woff2 +0 -0
- package/fonts/fa-sharp-solid-900.woff2 +0 -0
- package/fonts/fa-solid-900.woff2 +0 -0
- package/fonts/fa-thin-100.woff2 +0 -0
- package/fonts/fa-v4compatibility.woff2 +0 -0
- package/package.json +1 -1
- package/scss/theme/_fontawesome.scss +1 -0
package/CHANGELOG.md
CHANGED
package/dist/css/keymaster.css
CHANGED
|
@@ -19293,6 +19293,78 @@
|
|
|
19293
19293
|
--fa-style: 300;
|
|
19294
19294
|
}
|
|
19295
19295
|
|
|
19296
|
+
/*!
|
|
19297
|
+
* Font Awesome Pro 7.0.0 by @fontawesome - https://fontawesome.com
|
|
19298
|
+
* License - https://fontawesome.com/license (Commercial License)
|
|
19299
|
+
* Copyright 2025 Fonticons, Inc.
|
|
19300
|
+
*/
|
|
19301
|
+
:root, :host {
|
|
19302
|
+
--fa-family-sharp-duotone: "Font Awesome 7 Sharp Duotone";
|
|
19303
|
+
--fa-font-sharp-duotone-solid: normal 900 1em/1 var(--fa-family-sharp-duotone);
|
|
19304
|
+
/* deprecated: this older custom property will be removed next major release */
|
|
19305
|
+
--fa-style-family-sharp-duotone: var(--fa-family-sharp-duotone);
|
|
19306
|
+
}
|
|
19307
|
+
|
|
19308
|
+
@font-face {
|
|
19309
|
+
font-family: "Font Awesome 7 Sharp Duotone";
|
|
19310
|
+
font-style: normal;
|
|
19311
|
+
font-weight: 900;
|
|
19312
|
+
font-display: block;
|
|
19313
|
+
src: url("../../../fonts/fa-sharp-duotone-solid-900.woff2");
|
|
19314
|
+
}
|
|
19315
|
+
.fasds {
|
|
19316
|
+
--fa-family: var(--fa-family-sharp-duotone);
|
|
19317
|
+
--fa-style: 900;
|
|
19318
|
+
position: relative;
|
|
19319
|
+
letter-spacing: normal;
|
|
19320
|
+
}
|
|
19321
|
+
|
|
19322
|
+
.fa-sharp-duotone {
|
|
19323
|
+
--fa-family: var(--fa-family-sharp-duotone);
|
|
19324
|
+
position: relative;
|
|
19325
|
+
letter-spacing: normal;
|
|
19326
|
+
}
|
|
19327
|
+
|
|
19328
|
+
.fa-solid {
|
|
19329
|
+
--fa-style: 900;
|
|
19330
|
+
}
|
|
19331
|
+
|
|
19332
|
+
.fasds::before,
|
|
19333
|
+
.fa-sharp-duotone::before {
|
|
19334
|
+
position: absolute;
|
|
19335
|
+
color: var(--fa-primary-color, currentColor);
|
|
19336
|
+
opacity: var(--fa-primary-opacity, 1);
|
|
19337
|
+
}
|
|
19338
|
+
|
|
19339
|
+
.fasds::after,
|
|
19340
|
+
.fa-sharp-duotone::after {
|
|
19341
|
+
color: var(--fa-secondary-color, currentColor);
|
|
19342
|
+
opacity: var(--fa-secondary-opacity, 0.4);
|
|
19343
|
+
}
|
|
19344
|
+
|
|
19345
|
+
.fa-swap-opacity .fasds::before,
|
|
19346
|
+
.fa-swap-opacity .fa-sharp-duotone::before,
|
|
19347
|
+
.fa-swap-opacity.fasds::before,
|
|
19348
|
+
.fa-swap-opacity.fa-sharp-duotone::before {
|
|
19349
|
+
opacity: var(--fa-secondary-opacity, 0.4);
|
|
19350
|
+
}
|
|
19351
|
+
|
|
19352
|
+
.fa-swap-opacity .fasds::after,
|
|
19353
|
+
.fa-swap-opacity .fa-sharp-duotone::after,
|
|
19354
|
+
.fa-swap-opacity.fasds::after,
|
|
19355
|
+
.fa-swap-opacity.fa-sharp-duotone::after {
|
|
19356
|
+
opacity: var(--fa-primary-opacity, 1);
|
|
19357
|
+
}
|
|
19358
|
+
|
|
19359
|
+
.fa-li.fasds,
|
|
19360
|
+
.fa-li.fa-sharp-duotone,
|
|
19361
|
+
.fa-stack-1x.fasds,
|
|
19362
|
+
.fa-stack-1x.fa-sharp-duotone,
|
|
19363
|
+
.fa-stack-2x.fasds,
|
|
19364
|
+
.fa-stack-2x.fa-sharp-duotone {
|
|
19365
|
+
position: absolute;
|
|
19366
|
+
}
|
|
19367
|
+
|
|
19296
19368
|
/*!
|
|
19297
19369
|
* Font Awesome Pro 7.0.0 by @fontawesome - https://fontawesome.com
|
|
19298
19370
|
* License - https://fontawesome.com/license (Commercial License)
|