@fremtind/jokul 0.31.3 → 0.31.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/build/build-stats.html +1 -1
- package/build/cjs/components/autosuggest/BaseAutosuggest.cjs +30 -1
- package/build/cjs/components/autosuggest/BaseAutosuggest.cjs.map +1 -1
- package/build/cjs/components/tooltip/Tooltip.cjs +1 -1
- package/build/cjs/components/tooltip/Tooltip.cjs.map +1 -1
- package/build/cjs/components/tooltip/TooltipTrigger.cjs +1 -1
- package/build/cjs/components/tooltip/TooltipTrigger.cjs.map +1 -1
- package/build/es/components/autosuggest/BaseAutosuggest.js +38 -1
- package/build/es/components/autosuggest/BaseAutosuggest.js.map +1 -1
- package/build/es/components/tooltip/Tooltip.js +1 -1
- package/build/es/components/tooltip/Tooltip.js.map +1 -1
- package/build/es/components/tooltip/TooltipTrigger.js +1 -1
- package/build/es/components/tooltip/TooltipTrigger.js.map +1 -1
- package/package.json +2 -2
- package/styles/components/button/button.css +2 -2
- package/styles/components/button/button.min.css +1 -1
- 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/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/toast/toast.css +4 -4
- package/styles/components/toast/toast.min.css +1 -1
- package/styles/styles.css +37 -37
- package/styles/styles.min.css +1 -1
|
@@ -195,14 +195,14 @@
|
|
|
195
195
|
|
|
196
196
|
.jkl-toast[data-animation=entering],
|
|
197
197
|
.jkl-toast[data-animation=queued] {
|
|
198
|
-
animation: jkl-entering-
|
|
198
|
+
animation: jkl-entering-ul4fyoy 200ms ease-out forwards;
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
.jkl-toast[data-animation=exiting] {
|
|
202
|
-
animation: jkl-exiting-
|
|
202
|
+
animation: jkl-exiting-ul4fypk 150ms ease-in forwards;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
-
@keyframes jkl-entering-
|
|
205
|
+
@keyframes jkl-entering-ul4fyoy {
|
|
206
206
|
from {
|
|
207
207
|
opacity: 0;
|
|
208
208
|
transform: translate3d(0, 50%, 0);
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
transform: translate3d(0, 0, 0);
|
|
213
213
|
}
|
|
214
214
|
}
|
|
215
|
-
@keyframes jkl-exiting-
|
|
215
|
+
@keyframes jkl-exiting-ul4fypk {
|
|
216
216
|
from {
|
|
217
217
|
opacity: 1;
|
|
218
218
|
transform: translate3d(0, 0, 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:1rem}@media (width >= 0) and (max-width:679px){:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:0.75rem}}[data-density=compact],[data-layout-density=compact]{--jkl-toast-padding:0.5rem}.jkl-toast-region{background:transparent;bottom:1.5rem;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:1rem;min-width:18rem;pointer-events:auto}.jkl-toast-region--left{justify-content:flex-start;left:1.5rem}.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}@media (min-width:680px){.jkl-toast{font-size:1.25rem;font-weight:400;line-height:2rem;--jkl-icon-weight:300}}@media (width >= 0) and (max-width:679px){.jkl-toast{grid-template-areas:"progress progress" "icon dismiss" "content content"}}@media (min-width:680px){.jkl-toast{grid-template-areas:"progress progress progress" "icon content dismiss";grid-template-columns:auto 1fr auto}}.jkl-toast__progress{grid-area:progress;margin-bottom:1rem;margin-inline:calc(var(--jkl-toast-padding)*-1)}.jkl-toast__progress .jkl-countdown{--bar-color:var(--text-color);--track-color:transparent;border-radius:0}.jkl-toast__icon{grid-area:icon;margin-right:1rem;width:1.5rem}@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 .25rem;--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:transparent;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:1rem}@media (width >= 0) and (max-width:679px){:root,[data-density=comfortable],[data-layout-density=comfortable]{--jkl-toast-padding:0.75rem}}[data-density=compact],[data-layout-density=compact]{--jkl-toast-padding:0.5rem}.jkl-toast-region{background:transparent;bottom:1.5rem;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:1rem;min-width:18rem;pointer-events:auto}.jkl-toast-region--left{justify-content:flex-start;left:1.5rem}.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}@media (min-width:680px){.jkl-toast{font-size:1.25rem;font-weight:400;line-height:2rem;--jkl-icon-weight:300}}@media (width >= 0) and (max-width:679px){.jkl-toast{grid-template-areas:"progress progress" "icon dismiss" "content content"}}@media (min-width:680px){.jkl-toast{grid-template-areas:"progress progress progress" "icon content dismiss";grid-template-columns:auto 1fr auto}}.jkl-toast__progress{grid-area:progress;margin-bottom:1rem;margin-inline:calc(var(--jkl-toast-padding)*-1)}.jkl-toast__progress .jkl-countdown{--bar-color:var(--text-color);--track-color:transparent;border-radius:0}.jkl-toast__icon{grid-area:icon;margin-right:1rem;width:1.5rem}@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 .25rem;--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:transparent;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-ul4fyoy .2s ease-out forwards}.jkl-toast[data-animation=exiting]{animation:jkl-exiting-ul4fypk .15s ease-in forwards}@keyframes jkl-entering-ul4fyoy{0%{opacity:0;transform:translate3d(0,50%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes jkl-exiting-ul4fypk{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(0,50%,0)}}
|
package/styles/styles.css
CHANGED
|
@@ -1132,7 +1132,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
1132
1132
|
--color: var(--jkl-color-text-default);
|
|
1133
1133
|
}
|
|
1134
1134
|
.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 {
|
|
1135
|
-
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-
|
|
1135
|
+
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-u1422sw forwards;
|
|
1136
1136
|
}
|
|
1137
1137
|
.jkl-form-support-label--sr-only {
|
|
1138
1138
|
border: 0 !important;
|
|
@@ -1207,7 +1207,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
1207
1207
|
white-space: nowrap !important; /* 3 */
|
|
1208
1208
|
}
|
|
1209
1209
|
|
|
1210
|
-
@keyframes jkl-support-icon-entrance-
|
|
1210
|
+
@keyframes jkl-support-icon-entrance-u1422sw {
|
|
1211
1211
|
0% {
|
|
1212
1212
|
margin-right: 0;
|
|
1213
1213
|
opacity: 0;
|
|
@@ -1669,7 +1669,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1669
1669
|
height: 1rem;
|
|
1670
1670
|
}
|
|
1671
1671
|
html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
1672
|
-
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-
|
|
1672
|
+
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-u1422te;
|
|
1673
1673
|
}
|
|
1674
1674
|
:not([data-touchnavigation]) .jkl-button--primary:hover, :not([data-touchnavigation]) .jkl-button--secondary:hover, :not([data-touchnavigation]) .jkl-button--tertiary:hover {
|
|
1675
1675
|
scale: 1.05;
|
|
@@ -1713,7 +1713,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1713
1713
|
--background-color: var(--jkl-color-background-interactive-hover);
|
|
1714
1714
|
}
|
|
1715
1715
|
|
|
1716
|
-
@keyframes jkl-tertiary-flash-
|
|
1716
|
+
@keyframes jkl-tertiary-flash-u1422te {
|
|
1717
1717
|
0% {
|
|
1718
1718
|
opacity: 0.5;
|
|
1719
1719
|
scale: 1;
|
|
@@ -1738,15 +1738,15 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1738
1738
|
animation: 2500ms linear infinite;
|
|
1739
1739
|
}
|
|
1740
1740
|
.jkl-loader__dot--left {
|
|
1741
|
-
animation-name: jkl-loader-left-spin-
|
|
1741
|
+
animation-name: jkl-loader-left-spin-u1422u4;
|
|
1742
1742
|
margin-right: 1.71em;
|
|
1743
1743
|
}
|
|
1744
1744
|
.jkl-loader__dot--middle {
|
|
1745
|
-
animation-name: jkl-loader-middle-spin-
|
|
1745
|
+
animation-name: jkl-loader-middle-spin-u1422ua;
|
|
1746
1746
|
margin-right: 1.9em;
|
|
1747
1747
|
}
|
|
1748
1748
|
.jkl-loader__dot--right {
|
|
1749
|
-
animation-name: jkl-loader-right-spin-
|
|
1749
|
+
animation-name: jkl-loader-right-spin-u1422uf;
|
|
1750
1750
|
}
|
|
1751
1751
|
@media screen and (forced-colors: active) {
|
|
1752
1752
|
.jkl-loader__dot {
|
|
@@ -1774,7 +1774,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1774
1774
|
margin-right: 0.3em;
|
|
1775
1775
|
}
|
|
1776
1776
|
|
|
1777
|
-
@keyframes jkl-loader-left-spin-
|
|
1777
|
+
@keyframes jkl-loader-left-spin-u1422u4 {
|
|
1778
1778
|
0% {
|
|
1779
1779
|
transform: rotate(0) scale(0);
|
|
1780
1780
|
}
|
|
@@ -1788,7 +1788,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1788
1788
|
transform: rotate(180deg) scale(0);
|
|
1789
1789
|
}
|
|
1790
1790
|
}
|
|
1791
|
-
@keyframes jkl-loader-middle-spin-
|
|
1791
|
+
@keyframes jkl-loader-middle-spin-u1422ua {
|
|
1792
1792
|
0% {
|
|
1793
1793
|
transform: rotate(20deg) scale(0);
|
|
1794
1794
|
}
|
|
@@ -1805,7 +1805,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1805
1805
|
transform: rotate(200deg) scale(0);
|
|
1806
1806
|
}
|
|
1807
1807
|
}
|
|
1808
|
-
@keyframes jkl-loader-right-spin-
|
|
1808
|
+
@keyframes jkl-loader-right-spin-u1422uf {
|
|
1809
1809
|
0% {
|
|
1810
1810
|
transform: rotate(40deg) scale(0);
|
|
1811
1811
|
}
|
|
@@ -1853,7 +1853,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1853
1853
|
bottom: 0;
|
|
1854
1854
|
width: 12.5rem;
|
|
1855
1855
|
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%);
|
|
1856
|
-
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-
|
|
1856
|
+
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-u1422uu;
|
|
1857
1857
|
}
|
|
1858
1858
|
@media (width >= 0) and (max-width: 679px) {
|
|
1859
1859
|
.jkl-skeleton-animation {
|
|
@@ -1884,7 +1884,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1884
1884
|
@media screen and (forced-colors: active) {
|
|
1885
1885
|
.jkl-skeleton-element {
|
|
1886
1886
|
border: 1px solid CanvasText;
|
|
1887
|
-
animation: 2s ease infinite jkl-blink-
|
|
1887
|
+
animation: 2s ease infinite jkl-blink-u1422va;
|
|
1888
1888
|
}
|
|
1889
1889
|
}
|
|
1890
1890
|
|
|
@@ -1940,11 +1940,11 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1940
1940
|
}
|
|
1941
1941
|
@media screen and (forced-colors: active) {
|
|
1942
1942
|
.jkl-skeleton-table {
|
|
1943
|
-
animation: 2s ease-in-out infinite jkl-blink-
|
|
1943
|
+
animation: 2s ease-in-out infinite jkl-blink-u1422va;
|
|
1944
1944
|
}
|
|
1945
1945
|
}
|
|
1946
1946
|
|
|
1947
|
-
@keyframes jkl-sweep-
|
|
1947
|
+
@keyframes jkl-sweep-u1422uu {
|
|
1948
1948
|
0% {
|
|
1949
1949
|
transform: translateX(calc(0vw - 200px));
|
|
1950
1950
|
}
|
|
@@ -1952,7 +1952,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1952
1952
|
transform: translateX(calc(100vw + 400px));
|
|
1953
1953
|
}
|
|
1954
1954
|
}
|
|
1955
|
-
@keyframes jkl-blink-
|
|
1955
|
+
@keyframes jkl-blink-u1422va {
|
|
1956
1956
|
0% {
|
|
1957
1957
|
opacity: 1;
|
|
1958
1958
|
}
|
|
@@ -2422,7 +2422,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2422
2422
|
--jkl-checkbox-line-height: 1.5rem;
|
|
2423
2423
|
}
|
|
2424
2424
|
|
|
2425
|
-
@keyframes jkl-checkbox-checked-
|
|
2425
|
+
@keyframes jkl-checkbox-checked-u1422vi {
|
|
2426
2426
|
0% {
|
|
2427
2427
|
width: 0;
|
|
2428
2428
|
height: 0;
|
|
@@ -2436,7 +2436,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2436
2436
|
height: 58%;
|
|
2437
2437
|
}
|
|
2438
2438
|
}
|
|
2439
|
-
@keyframes jkl-checkbox-indeterminate-
|
|
2439
|
+
@keyframes jkl-checkbox-indeterminate-u1422vx {
|
|
2440
2440
|
0% {
|
|
2441
2441
|
width: 0;
|
|
2442
2442
|
}
|
|
@@ -2464,11 +2464,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2464
2464
|
top: -6px;
|
|
2465
2465
|
}
|
|
2466
2466
|
.jkl-checkbox__input:checked + .jkl-checkbox__label .jkl-checkbox__check-mark::after {
|
|
2467
|
-
animation: jkl-checkbox-checked-
|
|
2467
|
+
animation: jkl-checkbox-checked-u1422vi 150ms ease-in-out forwards;
|
|
2468
2468
|
opacity: 1;
|
|
2469
2469
|
}
|
|
2470
2470
|
.jkl-checkbox__input:indeterminate:not(:checked) + .jkl-checkbox__label .jkl-checkbox__indeterminate-mark::after {
|
|
2471
|
-
animation: jkl-checkbox-indeterminate-
|
|
2471
|
+
animation: jkl-checkbox-indeterminate-u1422vx 150ms ease-in-out forwards;
|
|
2472
2472
|
opacity: 1;
|
|
2473
2473
|
}
|
|
2474
2474
|
.jkl-checkbox__input:focus-visible + .jkl-checkbox__label {
|
|
@@ -3687,7 +3687,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-calendar-date-
|
|
|
3687
3687
|
padding: 1rem 0 2.5rem 0;
|
|
3688
3688
|
}
|
|
3689
3689
|
|
|
3690
|
-
@keyframes jkl-show-
|
|
3690
|
+
@keyframes jkl-show-u1422vz {
|
|
3691
3691
|
from {
|
|
3692
3692
|
transform: translate3d(0, 0.5rem, 0);
|
|
3693
3693
|
opacity: 0;
|
|
@@ -3722,7 +3722,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-calendar-date-
|
|
|
3722
3722
|
}
|
|
3723
3723
|
}
|
|
3724
3724
|
.jkl-feedback__fade-in {
|
|
3725
|
-
animation: jkl-show-
|
|
3725
|
+
animation: jkl-show-u1422vz 0.25s ease-out;
|
|
3726
3726
|
}
|
|
3727
3727
|
.jkl-feedback__buttons {
|
|
3728
3728
|
display: flex;
|
|
@@ -3960,7 +3960,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
3960
3960
|
--background-color: var(--jkl-color-background-alert-success);
|
|
3961
3961
|
}
|
|
3962
3962
|
.jkl-message--dismissed {
|
|
3963
|
-
animation: jkl-dismiss-
|
|
3963
|
+
animation: jkl-dismiss-u1422w3 400ms ease-in-out forwards;
|
|
3964
3964
|
transition: visibility 0ms 400ms;
|
|
3965
3965
|
visibility: hidden;
|
|
3966
3966
|
}
|
|
@@ -3980,7 +3980,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
3980
3980
|
}
|
|
3981
3981
|
}
|
|
3982
3982
|
|
|
3983
|
-
@keyframes jkl-dismiss-
|
|
3983
|
+
@keyframes jkl-dismiss-u1422w3 {
|
|
3984
3984
|
from {
|
|
3985
3985
|
opacity: 1;
|
|
3986
3986
|
transform: translate3d(0, 0, 0);
|
|
@@ -4036,7 +4036,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4036
4036
|
--jkl-radio-button-label-font-weight: var(--jkl-small-font-weight);
|
|
4037
4037
|
}
|
|
4038
4038
|
|
|
4039
|
-
@keyframes jkl-dot-in-
|
|
4039
|
+
@keyframes jkl-dot-in-u1422wx {
|
|
4040
4040
|
0% {
|
|
4041
4041
|
transform: scale(0.8);
|
|
4042
4042
|
}
|
|
@@ -4079,7 +4079,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4079
4079
|
}
|
|
4080
4080
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
4081
4081
|
--dot-color: var(--jkl-color-border-action);
|
|
4082
|
-
animation: jkl-dot-in-
|
|
4082
|
+
animation: jkl-dot-in-u1422wx 150ms ease;
|
|
4083
4083
|
}
|
|
4084
4084
|
@media screen and (forced-colors: active) {
|
|
4085
4085
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
@@ -4229,7 +4229,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4229
4229
|
--background-color: var(--jkl-color-background-container-high);
|
|
4230
4230
|
}
|
|
4231
4231
|
|
|
4232
|
-
@keyframes jkl-dot-in-
|
|
4232
|
+
@keyframes jkl-dot-in-u1422xw {
|
|
4233
4233
|
0% {
|
|
4234
4234
|
transform: scale(0.8);
|
|
4235
4235
|
}
|
|
@@ -4277,7 +4277,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4277
4277
|
}
|
|
4278
4278
|
}
|
|
4279
4279
|
.jkl-radio-panel__input:checked + .jkl-radio-panel__decorator::after {
|
|
4280
|
-
animation: jkl-dot-in-
|
|
4280
|
+
animation: jkl-dot-in-u1422xw 150ms ease;
|
|
4281
4281
|
}
|
|
4282
4282
|
.jkl-radio-panel:has(:checked) {
|
|
4283
4283
|
--radio-dot-color: var(--jkl-color-border-action);
|
|
@@ -4289,7 +4289,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4289
4289
|
--radio-dot-color: var(--jkl-color-text-on-alert);
|
|
4290
4290
|
}
|
|
4291
4291
|
|
|
4292
|
-
@keyframes jkl-checkbox-checked-
|
|
4292
|
+
@keyframes jkl-checkbox-checked-u1422yt {
|
|
4293
4293
|
0% {
|
|
4294
4294
|
width: 0;
|
|
4295
4295
|
height: 0;
|
|
@@ -4352,7 +4352,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4352
4352
|
}
|
|
4353
4353
|
}
|
|
4354
4354
|
.jkl-checkbox-panel:has(:checked) .jkl-checkbox-panel__decorator::after {
|
|
4355
|
-
animation: jkl-checkbox-checked-
|
|
4355
|
+
animation: jkl-checkbox-checked-u1422yt 150ms ease-in-out forwards;
|
|
4356
4356
|
opacity: 1;
|
|
4357
4357
|
}
|
|
4358
4358
|
.jkl-checkbox-panel:has([aria-invalid=true]) {
|
|
@@ -5116,11 +5116,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
5116
5116
|
}
|
|
5117
5117
|
|
|
5118
5118
|
.jkl-countdown__tracker {
|
|
5119
|
-
animation: jkl-downcount-
|
|
5119
|
+
animation: jkl-downcount-u1422zr var(--duration) linear forwards;
|
|
5120
5120
|
animation-play-state: var(--play-state, running);
|
|
5121
5121
|
}
|
|
5122
5122
|
|
|
5123
|
-
@keyframes jkl-downcount-
|
|
5123
|
+
@keyframes jkl-downcount-u1422zr {
|
|
5124
5124
|
from {
|
|
5125
5125
|
width: 100%;
|
|
5126
5126
|
}
|
|
@@ -5319,7 +5319,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message
|
|
|
5319
5319
|
margin-bottom: 0;
|
|
5320
5320
|
}
|
|
5321
5321
|
.jkl-system-message--dismissed {
|
|
5322
|
-
animation: jkl-dismiss-
|
|
5322
|
+
animation: jkl-dismiss-u14230f 400ms ease-in forwards;
|
|
5323
5323
|
transition: visibility 0ms 400ms;
|
|
5324
5324
|
visibility: hidden;
|
|
5325
5325
|
}
|
|
@@ -5351,7 +5351,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message
|
|
|
5351
5351
|
}
|
|
5352
5352
|
}
|
|
5353
5353
|
|
|
5354
|
-
@keyframes jkl-dismiss-
|
|
5354
|
+
@keyframes jkl-dismiss-u14230f {
|
|
5355
5355
|
from {
|
|
5356
5356
|
opacity: 1;
|
|
5357
5357
|
transform: translate3d(0, 0, 0);
|
|
@@ -6226,14 +6226,14 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6226
6226
|
|
|
6227
6227
|
.jkl-toast[data-animation=entering],
|
|
6228
6228
|
.jkl-toast[data-animation=queued] {
|
|
6229
|
-
animation: jkl-entering-
|
|
6229
|
+
animation: jkl-entering-u142312 200ms ease-out forwards;
|
|
6230
6230
|
}
|
|
6231
6231
|
|
|
6232
6232
|
.jkl-toast[data-animation=exiting] {
|
|
6233
|
-
animation: jkl-exiting-
|
|
6233
|
+
animation: jkl-exiting-u14231u 150ms ease-in forwards;
|
|
6234
6234
|
}
|
|
6235
6235
|
|
|
6236
|
-
@keyframes jkl-entering-
|
|
6236
|
+
@keyframes jkl-entering-u142312 {
|
|
6237
6237
|
from {
|
|
6238
6238
|
opacity: 0;
|
|
6239
6239
|
transform: translate3d(0, 50%, 0);
|
|
@@ -6243,7 +6243,7 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6243
6243
|
transform: translate3d(0, 0, 0);
|
|
6244
6244
|
}
|
|
6245
6245
|
}
|
|
6246
|
-
@keyframes jkl-exiting-
|
|
6246
|
+
@keyframes jkl-exiting-u14231u {
|
|
6247
6247
|
from {
|
|
6248
6248
|
opacity: 1;
|
|
6249
6249
|
transform: translate3d(0, 0, 0);
|