@fremtind/jokul 0.40.1 → 0.40.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/README.md +1 -1
- package/build/build-stats.html +1 -1
- package/build/cjs/components/file-input/FileInput.cjs +1 -1
- package/build/cjs/components/file-input/FileInput.cjs.map +1 -1
- package/build/cjs/components/file-input/internal/Input.cjs +1 -1
- package/build/cjs/components/file-input/internal/Input.cjs.map +1 -1
- package/build/cjs/components/file-input/internal/MaxSize.cjs +2 -0
- package/build/cjs/components/file-input/internal/MaxSize.cjs.map +1 -0
- package/build/cjs/components/file-input/internal/MaxSize.d.cts +6 -0
- package/build/es/components/file-input/FileInput.js +1 -1
- package/build/es/components/file-input/FileInput.js.map +1 -1
- package/build/es/components/file-input/internal/Input.js +1 -1
- package/build/es/components/file-input/internal/Input.js.map +1 -1
- package/build/es/components/file-input/internal/MaxSize.d.ts +6 -0
- package/build/es/components/file-input/internal/MaxSize.js +2 -0
- package/build/es/components/file-input/internal/MaxSize.js.map +1 -0
- package/package.json +2 -2
- package/styles/components/button/button.css +31 -20
- package/styles/components/button/button.min.css +1 -1
- package/styles/components/button/button.scss +34 -25
- package/styles/components/checkbox/checkbox.css +4 -4
- package/styles/components/checkbox/checkbox.min.css +1 -1
- package/styles/components/feedback/feedback.css +2 -2
- package/styles/components/feedback/feedback.min.css +1 -1
- package/styles/components/file-input/file-input.css +12 -13
- package/styles/components/file-input/file-input.min.css +1 -1
- package/styles/components/file-input/file-input.scss +14 -4
- package/styles/components/input-group/input-group.css +2 -2
- package/styles/components/input-group/input-group.min.css +1 -1
- package/styles/components/input-panel/checkbox-panel.css +2 -2
- package/styles/components/input-panel/checkbox-panel.min.css +1 -1
- package/styles/components/input-panel/radio-panel.css +2 -2
- package/styles/components/input-panel/radio-panel.min.css +1 -1
- package/styles/components/loader/loader.css +6 -6
- package/styles/components/loader/loader.min.css +1 -1
- package/styles/components/loader/skeleton-loader.css +5 -5
- package/styles/components/loader/skeleton-loader.min.css +1 -1
- package/styles/components/message/message.css +2 -2
- package/styles/components/message/message.min.css +1 -1
- package/styles/components/progress-bar/progress-bar.css +2 -2
- package/styles/components/progress-bar/progress-bar.min.css +1 -1
- package/styles/components/radio-button/radio-button.css +2 -2
- package/styles/components/radio-button/radio-button.min.css +1 -1
- package/styles/components/system-message/system-message.css +2 -2
- package/styles/components/system-message/system-message.min.css +1 -1
- package/styles/components/text-input/text-input.css +2 -1
- package/styles/components/text-input/text-input.min.css +1 -1
- package/styles/components/text-input/text-input.scss +5 -3
- package/styles/components/toast/toast.css +4 -4
- package/styles/components/toast/toast.min.css +1 -1
- package/styles/styles.css +68 -56
- package/styles/styles.min.css +1 -1
|
@@ -203,9 +203,11 @@ $_text-input-selection-color--inverted: color.scale(
|
|
|
203
203
|
background-color: var(--jkl-text-input-background-color);
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
206
|
+
@include jkl.keyboard-navigation {
|
|
207
|
+
&:has(.jkl-text-input__input:focus-visible),
|
|
208
|
+
&:has(.jkl-text-area__text-area:focus-visible) {
|
|
209
|
+
@include jkl.focus-outline;
|
|
210
|
+
}
|
|
209
211
|
}
|
|
210
212
|
|
|
211
213
|
> .jkl-icon-button:focus-visible {
|
|
@@ -185,14 +185,14 @@
|
|
|
185
185
|
|
|
186
186
|
.jkl-toast[data-animation=entering],
|
|
187
187
|
.jkl-toast[data-animation=queued] {
|
|
188
|
-
animation: jkl-entering-
|
|
188
|
+
animation: jkl-entering-u88xv8b 200ms ease-out forwards;
|
|
189
189
|
}
|
|
190
190
|
|
|
191
191
|
.jkl-toast[data-animation=exiting] {
|
|
192
|
-
animation: jkl-exiting-
|
|
192
|
+
animation: jkl-exiting-u88xv8w 150ms ease-in forwards;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
|
-
@keyframes jkl-entering-
|
|
195
|
+
@keyframes jkl-entering-u88xv8b {
|
|
196
196
|
from {
|
|
197
197
|
opacity: 0;
|
|
198
198
|
transform: translate3d(0, 50%, 0);
|
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
transform: translate3d(0, 0, 0);
|
|
203
203
|
}
|
|
204
204
|
}
|
|
205
|
-
@keyframes jkl-exiting-
|
|
205
|
+
@keyframes jkl-exiting-u88xv8w {
|
|
206
206
|
from {
|
|
207
207
|
opacity: 1;
|
|
208
208
|
transform: translate3d(0, 0, 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:calc(var(--jkl-unit-10)*2)}@media (width >= 0) and (max-width:679px){:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:calc(var(--jkl-unit-10)*1.5)}}[data-density=compact],[data-layout-density=compact]{--jkl-toast-padding:0.5rem}.jkl-toast-region{background:#0000;bottom:calc(var(--jkl-unit-10)*3);display:flex;justify-content:center;left:0;pointer-events:none;position:fixed;right:0;width:100%;z-index:10000}.jkl-toast-region__toasts{align-items:center;display:flex;flex-direction:column;gap:calc(var(--jkl-unit-10)*2);min-width:18rem;pointer-events:auto}.jkl-toast-region--left{justify-content:flex-start;left:calc(var(--jkl-unit-10)*3)}.jkl-toast{--background-color:var(--jkl-color-background-container-high);--text-color:var(--jkl-color-text-default);align-items:start;background-color:var(--background-color);border-radius:4px;box-sizing:border-box;color:var(--text-color);display:grid;font-size:1.125rem;font-weight:400;line-height:1.75rem;max-width:min(30rem,85vw);overflow:hidden;padding:var(--jkl-toast-padding);padding-top:0;width:100%;--jkl-icon-weight:300;grid-template-areas:"progress progress progress" "icon content dismiss";grid-template-columns:auto 1fr auto}@media (min-width:680px){.jkl-toast{font-size:1.25rem;font-weight:400;line-height:2rem;--jkl-icon-weight:300}}.jkl-toast__progress{grid-area:progress;margin-bottom:calc(var(--jkl-unit-10)*2);margin-inline:calc(var(--jkl-toast-padding)*-1)}.jkl-toast__progress .jkl-countdown{--bar-color:var(--text-color);--track-color:#0000;border-radius:0}.jkl-toast__icon{grid-area:icon;margin-right:calc(var(--jkl-unit-10)*1.5)}@media screen and (forced-colors:active){.jkl-toast__icon,.jkl-toast__icon path,.jkl-toast__icon svg{stroke:CanvasText}}.jkl-toast__content{grid-area:content}.jkl-toast__message{margin-top:-.125rem}.jkl-toast__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0 0 calc(var(--jkl-unit-10)*.5) 0;--jkl-icon-weight:500}@media (min-width:680px){.jkl-toast__title{font-size:1.3125rem;font-weight:700;line-height:1.75rem;--jkl-icon-weight:500}}.jkl-toast__title~.jkl-toast__message{margin-top:0}.jkl-toast__dismiss-button{background-color:initial;color:inherit;cursor:pointer;grid-area:dismiss;justify-self:end;margin-left:var(--jkl-toast-gap);padding:0;position:relative}@media screen and (forced-colors:active){.jkl-toast__dismiss-button,.jkl-toast__dismiss-button path,.jkl-toast__dismiss-button svg{stroke:ButtonText}.jkl-toast__dismiss-button{background-color:ButtonFace}}.jkl-toast__dismiss-button:after{--tap-increment:-0.75rem;border-radius:.1875rem;content:"";inset:var(--tap-increment) var(--tap-increment) var(--tap-increment) var(--tap-increment);position:absolute}.jkl-toast--error,.jkl-toast--info,.jkl-toast--success,.jkl-toast--warning{--text-color:var(--jkl-color-text-on-alert)}.jkl-toast--info{--background-color:var(--jkl-color-background-alert-info)}.jkl-toast--warning{--background-color:var(--jkl-color-background-alert-warning)}.jkl-toast--error{--background-color:var(--jkl-color-background-alert-error)}.jkl-toast--success{--background-color:var(--jkl-color-background-alert-success)}@media screen and (forced-colors:active){.jkl-toast{border:2px solid CanvasText}.jkl-toast--info{border-style:dotted}.jkl-toast--warning{border-style:dashed}.jkl-toast--error{border-style:double;border-width:4px}}.jkl-toast[data-animation=entering],.jkl-toast[data-animation=queued]{animation:jkl-entering-
|
|
1
|
+
:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:calc(var(--jkl-unit-10)*2)}@media (width >= 0) and (max-width:679px){:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:calc(var(--jkl-unit-10)*1.5)}}[data-density=compact],[data-layout-density=compact]{--jkl-toast-padding:0.5rem}.jkl-toast-region{background:#0000;bottom:calc(var(--jkl-unit-10)*3);display:flex;justify-content:center;left:0;pointer-events:none;position:fixed;right:0;width:100%;z-index:10000}.jkl-toast-region__toasts{align-items:center;display:flex;flex-direction:column;gap:calc(var(--jkl-unit-10)*2);min-width:18rem;pointer-events:auto}.jkl-toast-region--left{justify-content:flex-start;left:calc(var(--jkl-unit-10)*3)}.jkl-toast{--background-color:var(--jkl-color-background-container-high);--text-color:var(--jkl-color-text-default);align-items:start;background-color:var(--background-color);border-radius:4px;box-sizing:border-box;color:var(--text-color);display:grid;font-size:1.125rem;font-weight:400;line-height:1.75rem;max-width:min(30rem,85vw);overflow:hidden;padding:var(--jkl-toast-padding);padding-top:0;width:100%;--jkl-icon-weight:300;grid-template-areas:"progress progress progress" "icon content dismiss";grid-template-columns:auto 1fr auto}@media (min-width:680px){.jkl-toast{font-size:1.25rem;font-weight:400;line-height:2rem;--jkl-icon-weight:300}}.jkl-toast__progress{grid-area:progress;margin-bottom:calc(var(--jkl-unit-10)*2);margin-inline:calc(var(--jkl-toast-padding)*-1)}.jkl-toast__progress .jkl-countdown{--bar-color:var(--text-color);--track-color:#0000;border-radius:0}.jkl-toast__icon{grid-area:icon;margin-right:calc(var(--jkl-unit-10)*1.5)}@media screen and (forced-colors:active){.jkl-toast__icon,.jkl-toast__icon path,.jkl-toast__icon svg{stroke:CanvasText}}.jkl-toast__content{grid-area:content}.jkl-toast__message{margin-top:-.125rem}.jkl-toast__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0 0 calc(var(--jkl-unit-10)*.5) 0;--jkl-icon-weight:500}@media (min-width:680px){.jkl-toast__title{font-size:1.3125rem;font-weight:700;line-height:1.75rem;--jkl-icon-weight:500}}.jkl-toast__title~.jkl-toast__message{margin-top:0}.jkl-toast__dismiss-button{background-color:initial;color:inherit;cursor:pointer;grid-area:dismiss;justify-self:end;margin-left:var(--jkl-toast-gap);padding:0;position:relative}@media screen and (forced-colors:active){.jkl-toast__dismiss-button,.jkl-toast__dismiss-button path,.jkl-toast__dismiss-button svg{stroke:ButtonText}.jkl-toast__dismiss-button{background-color:ButtonFace}}.jkl-toast__dismiss-button:after{--tap-increment:-0.75rem;border-radius:.1875rem;content:"";inset:var(--tap-increment) var(--tap-increment) var(--tap-increment) var(--tap-increment);position:absolute}.jkl-toast--error,.jkl-toast--info,.jkl-toast--success,.jkl-toast--warning{--text-color:var(--jkl-color-text-on-alert)}.jkl-toast--info{--background-color:var(--jkl-color-background-alert-info)}.jkl-toast--warning{--background-color:var(--jkl-color-background-alert-warning)}.jkl-toast--error{--background-color:var(--jkl-color-background-alert-error)}.jkl-toast--success{--background-color:var(--jkl-color-background-alert-success)}@media screen and (forced-colors:active){.jkl-toast{border:2px solid CanvasText}.jkl-toast--info{border-style:dotted}.jkl-toast--warning{border-style:dashed}.jkl-toast--error{border-style:double;border-width:4px}}.jkl-toast[data-animation=entering],.jkl-toast[data-animation=queued]{animation:jkl-entering-u88xv8b .2s ease-out forwards}.jkl-toast[data-animation=exiting]{animation:jkl-exiting-u88xv8w .15s ease-in forwards}@keyframes jkl-entering-u88xv8b{0%{opacity:0;transform:translate3d(0,50%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes jkl-exiting-u88xv8w{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(0,50%,0)}}
|
package/styles/styles.css
CHANGED
|
@@ -599,10 +599,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-autosuggest__i
|
|
|
599
599
|
.jkl-text-input-wrapper:has(:active) {
|
|
600
600
|
background-color: var(--jkl-text-input-background-color);
|
|
601
601
|
}
|
|
602
|
-
.jkl-text-input-wrapper:has(.jkl-text-input__input:focus-visible), .jkl-text-input-wrapper:has(.jkl-text-area__text-area:focus-visible) {
|
|
602
|
+
html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-input-wrapper:has(.jkl-text-input__input:focus-visible), html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-input-wrapper:has(.jkl-text-area__text-area:focus-visible) {
|
|
603
603
|
outline: 3px solid var(--jkl-color-border-action);
|
|
604
604
|
outline-offset: 3px;
|
|
605
605
|
}
|
|
606
|
+
|
|
606
607
|
.jkl-text-input-wrapper > .jkl-icon-button:focus-visible {
|
|
607
608
|
outline: 3px solid var(--jkl-color-border-action);
|
|
608
609
|
outline-offset: -8px;
|
|
@@ -1101,7 +1102,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
1101
1102
|
--color: var(--jkl-color-text-default);
|
|
1102
1103
|
}
|
|
1103
1104
|
.jkl-form-support-label--error .jkl-form-support-label__icon, .jkl-form-support-label--warning .jkl-form-support-label__icon, .jkl-form-support-label--success .jkl-form-support-label__icon {
|
|
1104
|
-
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-
|
|
1105
|
+
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-uw6hwod forwards;
|
|
1105
1106
|
}
|
|
1106
1107
|
.jkl-form-support-label--sr-only {
|
|
1107
1108
|
border: 0 !important;
|
|
@@ -1176,7 +1177,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
1176
1177
|
white-space: nowrap !important; /* 3 */
|
|
1177
1178
|
}
|
|
1178
1179
|
|
|
1179
|
-
@keyframes jkl-support-icon-entrance-
|
|
1180
|
+
@keyframes jkl-support-icon-entrance-uw6hwod {
|
|
1180
1181
|
0% {
|
|
1181
1182
|
margin-right: 0;
|
|
1182
1183
|
opacity: 0;
|
|
@@ -1449,8 +1450,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1449
1450
|
--jkl-button-padding-text: calc(var(--jkl-unit-10) * 3);
|
|
1450
1451
|
--jkl-button-padding-icon: calc(var(--jkl-unit-10) * 2);
|
|
1451
1452
|
--jkl-button-padding-icon-button: 0.5rem;
|
|
1452
|
-
--jkl-button-padding-
|
|
1453
|
-
--jkl-button-padding-ghost-inline: 0.5rem;
|
|
1453
|
+
--jkl-button-teritary-padding-icon: calc(var(--jkl-unit-10) * 0.5);
|
|
1454
1454
|
--jkl-button-font-size: 1.125rem;
|
|
1455
1455
|
--jkl-button-line-height: 1.75rem;
|
|
1456
1456
|
}
|
|
@@ -1469,7 +1469,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1469
1469
|
--jkl-button-padding-text: calc(var(--jkl-unit-10) * 1.5);
|
|
1470
1470
|
--jkl-button-padding-icon: 0.5rem;
|
|
1471
1471
|
--jkl-button-padding-icon-button: calc(var(--jkl-unit-10) * 0.5);
|
|
1472
|
-
--jkl-button-padding-
|
|
1472
|
+
--jkl-button-teritary-padding-icon: calc(var(--jkl-unit-10) * 0.25);
|
|
1473
1473
|
--jkl-button-padding-ghost-inline: calc(var(--jkl-unit-10) * 0.5);
|
|
1474
1474
|
--jkl-button-font-size: 1rem;
|
|
1475
1475
|
--jkl-button-line-height: 1.5rem;
|
|
@@ -1574,43 +1574,55 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1574
1574
|
width: 1rem;
|
|
1575
1575
|
height: 1rem;
|
|
1576
1576
|
}
|
|
1577
|
-
|
|
1578
|
-
|
|
1577
|
+
.jkl-button::after {
|
|
1578
|
+
content: "";
|
|
1579
|
+
opacity: 0;
|
|
1580
|
+
position: absolute;
|
|
1581
|
+
inset: 0;
|
|
1582
|
+
border-radius: inherit;
|
|
1583
|
+
background-color: var(--text-color);
|
|
1584
|
+
transition-timing-function: ease;
|
|
1585
|
+
transition-duration: 150ms;
|
|
1586
|
+
transition-property: opacity;
|
|
1579
1587
|
}
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1588
|
+
.jkl-button:hover::after {
|
|
1589
|
+
opacity: 0.15;
|
|
1590
|
+
}
|
|
1591
|
+
html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
1592
|
+
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-uw6hwof;
|
|
1583
1593
|
}
|
|
1584
|
-
.jkl-button--primary, .jkl-button--secondary {
|
|
1594
|
+
.jkl-button--primary, .jkl-button--secondary, .jkl-button--ghost {
|
|
1585
1595
|
--border-radius: 999px;
|
|
1586
1596
|
}
|
|
1587
1597
|
.jkl-button--primary {
|
|
1588
1598
|
--background-color: var(--jkl-color-background-action);
|
|
1589
1599
|
--text-color: var(--jkl-color-text-on-action);
|
|
1590
1600
|
}
|
|
1601
|
+
.jkl-button--secondary {
|
|
1602
|
+
border: var(--border-width) solid var(--text-color);
|
|
1603
|
+
}
|
|
1591
1604
|
.jkl-button--secondary::after {
|
|
1592
1605
|
content: "";
|
|
1593
1606
|
position: absolute;
|
|
1594
1607
|
inset: 0;
|
|
1595
|
-
border-radius: var(--border-radius);
|
|
1596
|
-
border: var(--border-width) solid var(--text-color);
|
|
1597
1608
|
}
|
|
1598
|
-
.jkl-button--tertiary
|
|
1599
|
-
|
|
1609
|
+
.jkl-button--tertiary {
|
|
1610
|
+
border-bottom: var(--border-width) solid var(--text-color);
|
|
1611
|
+
padding-inline: var(--jkl-button-teritary-padding-icon);
|
|
1600
1612
|
}
|
|
1601
|
-
.jkl-button--tertiary::after
|
|
1613
|
+
.jkl-button--tertiary::after {
|
|
1602
1614
|
content: "";
|
|
1603
1615
|
position: absolute;
|
|
1604
1616
|
inset: 0;
|
|
1605
1617
|
border-radius: var(--border-radius);
|
|
1606
|
-
border-bottom: var(--border-width) solid var(--text-color);
|
|
1607
1618
|
}
|
|
1608
|
-
.jkl-button--tertiary:
|
|
1609
|
-
|
|
1619
|
+
.jkl-button--tertiary:has(.jkl-icon:first-child) {
|
|
1620
|
+
padding-inline: var(--jkl-button-teritary-padding-icon) calc(var(--jkl-button-teritary-padding-icon) * 2);
|
|
1621
|
+
}
|
|
1622
|
+
.jkl-button--tertiary:has(.jkl-icon:last-child) {
|
|
1623
|
+
padding-inline: calc(var(--jkl-button-teritary-padding-icon) * 2) var(--jkl-button-teritary-padding-icon);
|
|
1610
1624
|
}
|
|
1611
1625
|
.jkl-button--ghost, .jkl-button--ghost:has(.jkl-icon:first-child), .jkl-button--ghost:has(.jkl-icon:last-child) {
|
|
1612
|
-
padding-inline: var(--jkl-button-padding-ghost-inline);
|
|
1613
|
-
border-radius: 0.25rem;
|
|
1614
1626
|
transition-timing-function: ease;
|
|
1615
1627
|
transition-duration: 150ms;
|
|
1616
1628
|
transition-property: background-color;
|
|
@@ -1619,7 +1631,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1619
1631
|
--background-color: var(--jkl-color-background-interactive-hover);
|
|
1620
1632
|
}
|
|
1621
1633
|
|
|
1622
|
-
@keyframes jkl-tertiary-flash-
|
|
1634
|
+
@keyframes jkl-tertiary-flash-uw6hwof {
|
|
1623
1635
|
0% {
|
|
1624
1636
|
opacity: 0.5;
|
|
1625
1637
|
scale: 1;
|
|
@@ -1644,15 +1656,15 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1644
1656
|
animation: 2500ms linear infinite;
|
|
1645
1657
|
}
|
|
1646
1658
|
.jkl-loader__dot--left {
|
|
1647
|
-
animation-name: jkl-loader-left-spin-
|
|
1659
|
+
animation-name: jkl-loader-left-spin-uw6hwoi;
|
|
1648
1660
|
margin-right: 1.71em;
|
|
1649
1661
|
}
|
|
1650
1662
|
.jkl-loader__dot--middle {
|
|
1651
|
-
animation-name: jkl-loader-middle-spin-
|
|
1663
|
+
animation-name: jkl-loader-middle-spin-uw6hwom;
|
|
1652
1664
|
margin-right: 1.9em;
|
|
1653
1665
|
}
|
|
1654
1666
|
.jkl-loader__dot--right {
|
|
1655
|
-
animation-name: jkl-loader-right-spin-
|
|
1667
|
+
animation-name: jkl-loader-right-spin-uw6hwp7;
|
|
1656
1668
|
}
|
|
1657
1669
|
@media screen and (forced-colors: active) {
|
|
1658
1670
|
.jkl-loader__dot {
|
|
@@ -1680,7 +1692,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1680
1692
|
margin-right: 0.3em;
|
|
1681
1693
|
}
|
|
1682
1694
|
|
|
1683
|
-
@keyframes jkl-loader-left-spin-
|
|
1695
|
+
@keyframes jkl-loader-left-spin-uw6hwoi {
|
|
1684
1696
|
0% {
|
|
1685
1697
|
transform: rotate(0) scale(0);
|
|
1686
1698
|
}
|
|
@@ -1694,7 +1706,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1694
1706
|
transform: rotate(180deg) scale(0);
|
|
1695
1707
|
}
|
|
1696
1708
|
}
|
|
1697
|
-
@keyframes jkl-loader-middle-spin-
|
|
1709
|
+
@keyframes jkl-loader-middle-spin-uw6hwom {
|
|
1698
1710
|
0% {
|
|
1699
1711
|
transform: rotate(20deg) scale(0);
|
|
1700
1712
|
}
|
|
@@ -1711,7 +1723,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1711
1723
|
transform: rotate(200deg) scale(0);
|
|
1712
1724
|
}
|
|
1713
1725
|
}
|
|
1714
|
-
@keyframes jkl-loader-right-spin-
|
|
1726
|
+
@keyframes jkl-loader-right-spin-uw6hwp7 {
|
|
1715
1727
|
0% {
|
|
1716
1728
|
transform: rotate(40deg) scale(0);
|
|
1717
1729
|
}
|
|
@@ -1759,7 +1771,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1759
1771
|
bottom: 0;
|
|
1760
1772
|
width: 12.5rem;
|
|
1761
1773
|
background: linear-gradient(89.17deg, rgba(249, 249, 249, 0) 0.8%, var(--jkl-skeleton-sweeper-color) 50.09%, rgba(249, 249, 249, 0) 96.31%);
|
|
1762
|
-
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-
|
|
1774
|
+
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-uw6hwpp;
|
|
1763
1775
|
}
|
|
1764
1776
|
@media (width >= 0) and (max-width: 679px) {
|
|
1765
1777
|
.jkl-skeleton-animation {
|
|
@@ -1790,7 +1802,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1790
1802
|
@media screen and (forced-colors: active) {
|
|
1791
1803
|
.jkl-skeleton-element {
|
|
1792
1804
|
border: 1px solid CanvasText;
|
|
1793
|
-
animation: 2s ease infinite jkl-blink-
|
|
1805
|
+
animation: 2s ease infinite jkl-blink-uw6hwq4;
|
|
1794
1806
|
}
|
|
1795
1807
|
}
|
|
1796
1808
|
|
|
@@ -1846,11 +1858,11 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1846
1858
|
}
|
|
1847
1859
|
@media screen and (forced-colors: active) {
|
|
1848
1860
|
.jkl-skeleton-table {
|
|
1849
|
-
animation: 2s ease-in-out infinite jkl-blink-
|
|
1861
|
+
animation: 2s ease-in-out infinite jkl-blink-uw6hwq4;
|
|
1850
1862
|
}
|
|
1851
1863
|
}
|
|
1852
1864
|
|
|
1853
|
-
@keyframes jkl-sweep-
|
|
1865
|
+
@keyframes jkl-sweep-uw6hwpp {
|
|
1854
1866
|
0% {
|
|
1855
1867
|
transform: translateX(calc(0vw - 200px));
|
|
1856
1868
|
}
|
|
@@ -1858,7 +1870,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1858
1870
|
transform: translateX(calc(100vw + 400px));
|
|
1859
1871
|
}
|
|
1860
1872
|
}
|
|
1861
|
-
@keyframes jkl-blink-
|
|
1873
|
+
@keyframes jkl-blink-uw6hwq4 {
|
|
1862
1874
|
0% {
|
|
1863
1875
|
opacity: 1;
|
|
1864
1876
|
}
|
|
@@ -2322,7 +2334,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2322
2334
|
--jkl-checkbox-line-height: 1.5rem;
|
|
2323
2335
|
}
|
|
2324
2336
|
|
|
2325
|
-
@keyframes jkl-checkbox-checked-
|
|
2337
|
+
@keyframes jkl-checkbox-checked-uw6hwqx {
|
|
2326
2338
|
0% {
|
|
2327
2339
|
width: 0;
|
|
2328
2340
|
height: 0;
|
|
@@ -2336,7 +2348,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2336
2348
|
height: 58%;
|
|
2337
2349
|
}
|
|
2338
2350
|
}
|
|
2339
|
-
@keyframes jkl-checkbox-indeterminate-
|
|
2351
|
+
@keyframes jkl-checkbox-indeterminate-uw6hwrq {
|
|
2340
2352
|
0% {
|
|
2341
2353
|
width: 0;
|
|
2342
2354
|
}
|
|
@@ -2364,11 +2376,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2364
2376
|
top: -6px;
|
|
2365
2377
|
}
|
|
2366
2378
|
.jkl-checkbox__input:checked + .jkl-checkbox__label .jkl-checkbox__check-mark::after {
|
|
2367
|
-
animation: jkl-checkbox-checked-
|
|
2379
|
+
animation: jkl-checkbox-checked-uw6hwqx 150ms ease-in-out forwards;
|
|
2368
2380
|
opacity: 1;
|
|
2369
2381
|
}
|
|
2370
2382
|
.jkl-checkbox__input:indeterminate:not(:checked) + .jkl-checkbox__label .jkl-checkbox__indeterminate-mark::after {
|
|
2371
|
-
animation: jkl-checkbox-indeterminate-
|
|
2383
|
+
animation: jkl-checkbox-indeterminate-uw6hwrq 150ms ease-in-out forwards;
|
|
2372
2384
|
opacity: 1;
|
|
2373
2385
|
}
|
|
2374
2386
|
.jkl-checkbox__input:focus-visible + .jkl-checkbox__label {
|
|
@@ -3756,7 +3768,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-combobox__wrap
|
|
|
3756
3768
|
padding: 1rem 0 2.5rem 0;
|
|
3757
3769
|
}
|
|
3758
3770
|
|
|
3759
|
-
@keyframes jkl-show-
|
|
3771
|
+
@keyframes jkl-show-uw6hwrs {
|
|
3760
3772
|
from {
|
|
3761
3773
|
transform: translate3d(0, 0.5rem, 0);
|
|
3762
3774
|
opacity: 0;
|
|
@@ -3791,7 +3803,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-combobox__wrap
|
|
|
3791
3803
|
}
|
|
3792
3804
|
}
|
|
3793
3805
|
.jkl-feedback__fade-in {
|
|
3794
|
-
animation: jkl-show-
|
|
3806
|
+
animation: jkl-show-uw6hwrs 0.25s ease-out;
|
|
3795
3807
|
}
|
|
3796
3808
|
.jkl-feedback__buttons {
|
|
3797
3809
|
display: flex;
|
|
@@ -4033,7 +4045,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4033
4045
|
--background-color: var(--jkl-color-background-alert-success);
|
|
4034
4046
|
}
|
|
4035
4047
|
.jkl-message--dismissed {
|
|
4036
|
-
animation: jkl-dismiss-
|
|
4048
|
+
animation: jkl-dismiss-uw6hws4 400ms ease-in-out forwards;
|
|
4037
4049
|
transition: visibility 0ms 400ms;
|
|
4038
4050
|
visibility: hidden;
|
|
4039
4051
|
}
|
|
@@ -4053,7 +4065,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4053
4065
|
}
|
|
4054
4066
|
}
|
|
4055
4067
|
|
|
4056
|
-
@keyframes jkl-dismiss-
|
|
4068
|
+
@keyframes jkl-dismiss-uw6hws4 {
|
|
4057
4069
|
from {
|
|
4058
4070
|
opacity: 1;
|
|
4059
4071
|
transform: translate3d(0, 0, 0);
|
|
@@ -4109,7 +4121,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4109
4121
|
--jkl-radio-button-label-font-weight: var(--jkl-small-font-weight);
|
|
4110
4122
|
}
|
|
4111
4123
|
|
|
4112
|
-
@keyframes jkl-dot-in-
|
|
4124
|
+
@keyframes jkl-dot-in-uw6hwsx {
|
|
4113
4125
|
0% {
|
|
4114
4126
|
transform: scale(0.8);
|
|
4115
4127
|
}
|
|
@@ -4154,7 +4166,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4154
4166
|
}
|
|
4155
4167
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
4156
4168
|
--dot-color: var(--jkl-color-border-action);
|
|
4157
|
-
animation: jkl-dot-in-
|
|
4169
|
+
animation: jkl-dot-in-uw6hwsx 150ms ease;
|
|
4158
4170
|
}
|
|
4159
4171
|
@media screen and (forced-colors: active) {
|
|
4160
4172
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
@@ -4306,7 +4318,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4306
4318
|
--outer-border-thickness: 0.125rem;
|
|
4307
4319
|
}
|
|
4308
4320
|
|
|
4309
|
-
@keyframes jkl-dot-in-
|
|
4321
|
+
@keyframes jkl-dot-in-uw6hwt1 {
|
|
4310
4322
|
0% {
|
|
4311
4323
|
transform: scale(0.8);
|
|
4312
4324
|
}
|
|
@@ -4354,7 +4366,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4354
4366
|
}
|
|
4355
4367
|
}
|
|
4356
4368
|
.jkl-radio-panel__input:checked + .jkl-radio-panel__decorator::after {
|
|
4357
|
-
animation: jkl-dot-in-
|
|
4369
|
+
animation: jkl-dot-in-uw6hwt1 150ms ease;
|
|
4358
4370
|
}
|
|
4359
4371
|
.jkl-radio-panel:has(:checked) {
|
|
4360
4372
|
--radio-dot-color: var(--jkl-color-border-action);
|
|
@@ -4366,7 +4378,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4366
4378
|
--radio-dot-color: var(--jkl-color-text-on-alert);
|
|
4367
4379
|
}
|
|
4368
4380
|
|
|
4369
|
-
@keyframes jkl-checkbox-checked-
|
|
4381
|
+
@keyframes jkl-checkbox-checked-uw6hwt8 {
|
|
4370
4382
|
0% {
|
|
4371
4383
|
width: 0;
|
|
4372
4384
|
height: 0;
|
|
@@ -4429,7 +4441,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4429
4441
|
}
|
|
4430
4442
|
}
|
|
4431
4443
|
.jkl-checkbox-panel:has(:checked) .jkl-checkbox-panel__decorator::after {
|
|
4432
|
-
animation: jkl-checkbox-checked-
|
|
4444
|
+
animation: jkl-checkbox-checked-uw6hwt8 150ms ease-in-out forwards;
|
|
4433
4445
|
opacity: 1;
|
|
4434
4446
|
}
|
|
4435
4447
|
.jkl-checkbox-panel:has([aria-invalid=true]) {
|
|
@@ -5215,11 +5227,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5215
5227
|
}
|
|
5216
5228
|
|
|
5217
5229
|
.jkl-countdown__tracker {
|
|
5218
|
-
animation: jkl-downcount-
|
|
5230
|
+
animation: jkl-downcount-uw6hwty var(--duration) linear forwards;
|
|
5219
5231
|
animation-play-state: var(--play-state, running);
|
|
5220
5232
|
}
|
|
5221
5233
|
|
|
5222
|
-
@keyframes jkl-downcount-
|
|
5234
|
+
@keyframes jkl-downcount-uw6hwty {
|
|
5223
5235
|
from {
|
|
5224
5236
|
width: 100%;
|
|
5225
5237
|
}
|
|
@@ -5427,7 +5439,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5427
5439
|
margin-bottom: 0;
|
|
5428
5440
|
}
|
|
5429
5441
|
.jkl-system-message--dismissed {
|
|
5430
|
-
animation: jkl-dismiss-
|
|
5442
|
+
animation: jkl-dismiss-uw6hwu9 400ms ease-in forwards;
|
|
5431
5443
|
transition: visibility 0ms 400ms;
|
|
5432
5444
|
visibility: hidden;
|
|
5433
5445
|
}
|
|
@@ -5459,7 +5471,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-select:has(:fo
|
|
|
5459
5471
|
}
|
|
5460
5472
|
}
|
|
5461
5473
|
|
|
5462
|
-
@keyframes jkl-dismiss-
|
|
5474
|
+
@keyframes jkl-dismiss-uw6hwu9 {
|
|
5463
5475
|
from {
|
|
5464
5476
|
opacity: 1;
|
|
5465
5477
|
transform: translate3d(0, 0, 0);
|
|
@@ -6329,14 +6341,14 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6329
6341
|
|
|
6330
6342
|
.jkl-toast[data-animation=entering],
|
|
6331
6343
|
.jkl-toast[data-animation=queued] {
|
|
6332
|
-
animation: jkl-entering-
|
|
6344
|
+
animation: jkl-entering-uw6hwub 200ms ease-out forwards;
|
|
6333
6345
|
}
|
|
6334
6346
|
|
|
6335
6347
|
.jkl-toast[data-animation=exiting] {
|
|
6336
|
-
animation: jkl-exiting-
|
|
6348
|
+
animation: jkl-exiting-uw6hwv7 150ms ease-in forwards;
|
|
6337
6349
|
}
|
|
6338
6350
|
|
|
6339
|
-
@keyframes jkl-entering-
|
|
6351
|
+
@keyframes jkl-entering-uw6hwub {
|
|
6340
6352
|
from {
|
|
6341
6353
|
opacity: 0;
|
|
6342
6354
|
transform: translate3d(0, 50%, 0);
|
|
@@ -6346,7 +6358,7 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6346
6358
|
transform: translate3d(0, 0, 0);
|
|
6347
6359
|
}
|
|
6348
6360
|
}
|
|
6349
|
-
@keyframes jkl-exiting-
|
|
6361
|
+
@keyframes jkl-exiting-uw6hwv7 {
|
|
6350
6362
|
from {
|
|
6351
6363
|
opacity: 1;
|
|
6352
6364
|
transform: translate3d(0, 0, 0);
|