@fremtind/jokul 0.37.8 → 0.37.10
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/accordion/AccordionItem.cjs +1 -1
- package/build/cjs/components/accordion/AccordionItem.cjs.map +1 -1
- package/build/cjs/components/select/Select.cjs +1 -1
- package/build/cjs/components/select/Select.cjs.map +1 -1
- package/build/cjs/components/text-input/BaseTextInput.cjs.map +1 -1
- package/build/cjs/components/text-input/BaseTextInput.d.cts +10 -1
- package/build/cjs/components/tooltip/PopupTip.cjs +1 -1
- package/build/cjs/components/tooltip/PopupTip.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/TooltipContent.cjs +1 -1
- package/build/cjs/components/tooltip/TooltipContent.cjs.map +1 -1
- package/build/cjs/components/tooltip/TooltipContent.d.cts +3 -1
- package/build/es/components/accordion/AccordionItem.js +1 -1
- package/build/es/components/accordion/AccordionItem.js.map +1 -1
- package/build/es/components/select/Select.js +1 -1
- package/build/es/components/select/Select.js.map +1 -1
- package/build/es/components/text-input/BaseTextInput.d.ts +10 -1
- package/build/es/components/text-input/BaseTextInput.js.map +1 -1
- package/build/es/components/tooltip/PopupTip.js +1 -1
- package/build/es/components/tooltip/PopupTip.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/TooltipContent.d.ts +3 -1
- package/build/es/components/tooltip/TooltipContent.js +1 -1
- package/build/es/components/tooltip/TooltipContent.js.map +1 -1
- package/package.json +2 -2
- package/styles/components/accordion/accordion.css +6 -0
- package/styles/components/accordion/accordion.min.css +2 -2
- package/styles/components/accordion/accordion.scss +6 -0
- package/styles/components/button/button.css +2 -2
- package/styles/components/button/button.min.css +1 -1
- package/styles/components/card/card.css +1 -0
- package/styles/components/card/card.min.css +1 -1
- package/styles/components/card/card.scss +1 -0
- 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/components/tooltip/_index.scss +1 -0
- package/styles/components/tooltip/popuptip.css +3 -0
- package/styles/components/tooltip/popuptip.min.css +1 -0
- package/styles/components/tooltip/popuptip.scss +5 -0
- package/styles/styles.css +48 -37
- package/styles/styles.min.css +2 -2
package/styles/styles.css
CHANGED
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
--jkl-accordion-arrow-right: var(--jkl-spacing-12);
|
|
14
14
|
--jkl-accordion-content-padding: var(--jkl-spacing-8) var(--jkl-spacing-16)
|
|
15
15
|
var(--jkl-spacing-16);
|
|
16
|
+
--jkl-accordion-icon-opsz: 24;
|
|
17
|
+
--jkl-accordion-icon-size: 1.5rem;
|
|
16
18
|
--title-font-size: var(--jkl-body-font-size);
|
|
17
19
|
--title-line-height: var(--jkl-body-line-height);
|
|
18
20
|
--title-font-weight: var(--jkl-body-font-weight);
|
|
@@ -41,6 +43,8 @@
|
|
|
41
43
|
--jkl-accordion-arrow-top: var(--jkl-spacing-8);
|
|
42
44
|
--jkl-accordion-arrow-right: var(--jkl-spacing-4);
|
|
43
45
|
--jkl-accordion-content-padding: var(--jkl-spacing-8);
|
|
46
|
+
--jkl-accordion-icon-opsz: 20;
|
|
47
|
+
--jkl-accordion-icon-size: 1.25rem;
|
|
44
48
|
--title-font-size: var(--jkl-small-font-size);
|
|
45
49
|
--title-line-height: var(--jkl-small-line-height);
|
|
46
50
|
--title-font-weight: var(--jkl-small-font-weight);
|
|
@@ -58,6 +62,8 @@
|
|
|
58
62
|
--text-color: var(--jkl-color-text-default);
|
|
59
63
|
--title-text-color: var(--jkl-color-text-interactive);
|
|
60
64
|
--border-color: var(--jkl-color-border-separator);
|
|
65
|
+
--jkl-icon-opsz: var(--jkl-accordion-icon-opsz);
|
|
66
|
+
--jkl-icon-size: var(--jkl-accordion-icon-size);
|
|
61
67
|
background-color: var(--background);
|
|
62
68
|
color: var(--text-color);
|
|
63
69
|
border-bottom: 0.0625rem solid var(--border-color);
|
|
@@ -1129,7 +1135,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
1129
1135
|
--color: var(--jkl-color-text-default);
|
|
1130
1136
|
}
|
|
1131
1137
|
.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 {
|
|
1132
|
-
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-
|
|
1138
|
+
animation: 400ms cubic-bezier(0, 0, 0.3, 1) 250ms jkl-support-icon-entrance-uat1ig9 forwards;
|
|
1133
1139
|
}
|
|
1134
1140
|
.jkl-form-support-label--sr-only {
|
|
1135
1141
|
border: 0 !important;
|
|
@@ -1204,7 +1210,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-text-area__tex
|
|
|
1204
1210
|
white-space: nowrap !important; /* 3 */
|
|
1205
1211
|
}
|
|
1206
1212
|
|
|
1207
|
-
@keyframes jkl-support-icon-entrance-
|
|
1213
|
+
@keyframes jkl-support-icon-entrance-uat1ig9 {
|
|
1208
1214
|
0% {
|
|
1209
1215
|
margin-right: 0;
|
|
1210
1216
|
opacity: 0;
|
|
@@ -1341,6 +1347,10 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1341
1347
|
min-height: 44px;
|
|
1342
1348
|
}
|
|
1343
1349
|
|
|
1350
|
+
.jkl-popuptip__content-wrapper:focus {
|
|
1351
|
+
outline: none;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1344
1354
|
.jkl-breadcrumb a[aria-current] {
|
|
1345
1355
|
text-decoration: none;
|
|
1346
1356
|
background-image: none;
|
|
@@ -1650,7 +1660,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-tooltip-trigge
|
|
|
1650
1660
|
height: 1rem;
|
|
1651
1661
|
}
|
|
1652
1662
|
html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
1653
|
-
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-
|
|
1663
|
+
animation: cubic-bezier(0.6, 0.2, 0.35, 1) 250ms jkl-tertiary-flash-uat1igp;
|
|
1654
1664
|
}
|
|
1655
1665
|
:not([data-touchnavigation]) .jkl-button--primary:hover, :not([data-touchnavigation]) .jkl-button--secondary:hover, :not([data-touchnavigation]) .jkl-button--tertiary:hover {
|
|
1656
1666
|
scale: 1.05;
|
|
@@ -1694,7 +1704,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1694
1704
|
--background-color: var(--jkl-color-background-interactive-hover);
|
|
1695
1705
|
}
|
|
1696
1706
|
|
|
1697
|
-
@keyframes jkl-tertiary-flash-
|
|
1707
|
+
@keyframes jkl-tertiary-flash-uat1igp {
|
|
1698
1708
|
0% {
|
|
1699
1709
|
opacity: 0.5;
|
|
1700
1710
|
scale: 1;
|
|
@@ -1719,15 +1729,15 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1719
1729
|
animation: 2500ms linear infinite;
|
|
1720
1730
|
}
|
|
1721
1731
|
.jkl-loader__dot--left {
|
|
1722
|
-
animation-name: jkl-loader-left-spin-
|
|
1732
|
+
animation-name: jkl-loader-left-spin-uat1igq;
|
|
1723
1733
|
margin-right: 1.71em;
|
|
1724
1734
|
}
|
|
1725
1735
|
.jkl-loader__dot--middle {
|
|
1726
|
-
animation-name: jkl-loader-middle-spin-
|
|
1736
|
+
animation-name: jkl-loader-middle-spin-uat1ih4;
|
|
1727
1737
|
margin-right: 1.9em;
|
|
1728
1738
|
}
|
|
1729
1739
|
.jkl-loader__dot--right {
|
|
1730
|
-
animation-name: jkl-loader-right-spin-
|
|
1740
|
+
animation-name: jkl-loader-right-spin-uat1ih8;
|
|
1731
1741
|
}
|
|
1732
1742
|
@media screen and (forced-colors: active) {
|
|
1733
1743
|
.jkl-loader__dot {
|
|
@@ -1755,7 +1765,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1755
1765
|
margin-right: 0.3em;
|
|
1756
1766
|
}
|
|
1757
1767
|
|
|
1758
|
-
@keyframes jkl-loader-left-spin-
|
|
1768
|
+
@keyframes jkl-loader-left-spin-uat1igq {
|
|
1759
1769
|
0% {
|
|
1760
1770
|
transform: rotate(0) scale(0);
|
|
1761
1771
|
}
|
|
@@ -1769,7 +1779,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1769
1779
|
transform: rotate(180deg) scale(0);
|
|
1770
1780
|
}
|
|
1771
1781
|
}
|
|
1772
|
-
@keyframes jkl-loader-middle-spin-
|
|
1782
|
+
@keyframes jkl-loader-middle-spin-uat1ih4 {
|
|
1773
1783
|
0% {
|
|
1774
1784
|
transform: rotate(20deg) scale(0);
|
|
1775
1785
|
}
|
|
@@ -1786,7 +1796,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1786
1796
|
transform: rotate(200deg) scale(0);
|
|
1787
1797
|
}
|
|
1788
1798
|
}
|
|
1789
|
-
@keyframes jkl-loader-right-spin-
|
|
1799
|
+
@keyframes jkl-loader-right-spin-uat1ih8 {
|
|
1790
1800
|
0% {
|
|
1791
1801
|
transform: rotate(40deg) scale(0);
|
|
1792
1802
|
}
|
|
@@ -1834,7 +1844,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1834
1844
|
bottom: 0;
|
|
1835
1845
|
width: 12.5rem;
|
|
1836
1846
|
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%);
|
|
1837
|
-
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-
|
|
1847
|
+
animation: var(--jkl-skeleton-sweep-duration) ease infinite jkl-sweep-uat1ihc;
|
|
1838
1848
|
}
|
|
1839
1849
|
@media (width >= 0) and (max-width: 679px) {
|
|
1840
1850
|
.jkl-skeleton-animation {
|
|
@@ -1865,7 +1875,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1865
1875
|
@media screen and (forced-colors: active) {
|
|
1866
1876
|
.jkl-skeleton-element {
|
|
1867
1877
|
border: 1px solid CanvasText;
|
|
1868
|
-
animation: 2s ease infinite jkl-blink-
|
|
1878
|
+
animation: 2s ease infinite jkl-blink-uat1ihh;
|
|
1869
1879
|
}
|
|
1870
1880
|
}
|
|
1871
1881
|
|
|
@@ -1921,11 +1931,11 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1921
1931
|
}
|
|
1922
1932
|
@media screen and (forced-colors: active) {
|
|
1923
1933
|
.jkl-skeleton-table {
|
|
1924
|
-
animation: 2s ease-in-out infinite jkl-blink-
|
|
1934
|
+
animation: 2s ease-in-out infinite jkl-blink-uat1ihh;
|
|
1925
1935
|
}
|
|
1926
1936
|
}
|
|
1927
1937
|
|
|
1928
|
-
@keyframes jkl-sweep-
|
|
1938
|
+
@keyframes jkl-sweep-uat1ihc {
|
|
1929
1939
|
0% {
|
|
1930
1940
|
transform: translateX(calc(0vw - 200px));
|
|
1931
1941
|
}
|
|
@@ -1933,7 +1943,7 @@ html[data-touchnavigation] .jkl-button.jkl-button--pressed::before {
|
|
|
1933
1943
|
transform: translateX(calc(100vw + 400px));
|
|
1934
1944
|
}
|
|
1935
1945
|
}
|
|
1936
|
-
@keyframes jkl-blink-
|
|
1946
|
+
@keyframes jkl-blink-uat1ihh {
|
|
1937
1947
|
0% {
|
|
1938
1948
|
opacity: 1;
|
|
1939
1949
|
}
|
|
@@ -2214,6 +2224,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2214
2224
|
content: "";
|
|
2215
2225
|
position: absolute;
|
|
2216
2226
|
inset: 0;
|
|
2227
|
+
pointer-events: none;
|
|
2217
2228
|
border-radius: var(--border-radius);
|
|
2218
2229
|
border: var(--border-width) solid var(--border-color);
|
|
2219
2230
|
transition-timing-function: ease;
|
|
@@ -2396,7 +2407,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2396
2407
|
--jkl-checkbox-line-height: 1.5rem;
|
|
2397
2408
|
}
|
|
2398
2409
|
|
|
2399
|
-
@keyframes jkl-checkbox-checked-
|
|
2410
|
+
@keyframes jkl-checkbox-checked-uat1iho {
|
|
2400
2411
|
0% {
|
|
2401
2412
|
width: 0;
|
|
2402
2413
|
height: 0;
|
|
@@ -2410,7 +2421,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2410
2421
|
height: 58%;
|
|
2411
2422
|
}
|
|
2412
2423
|
}
|
|
2413
|
-
@keyframes jkl-checkbox-indeterminate-
|
|
2424
|
+
@keyframes jkl-checkbox-indeterminate-uat1iii {
|
|
2414
2425
|
0% {
|
|
2415
2426
|
width: 0;
|
|
2416
2427
|
}
|
|
@@ -2438,11 +2449,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-nav-card:focus
|
|
|
2438
2449
|
top: -6px;
|
|
2439
2450
|
}
|
|
2440
2451
|
.jkl-checkbox__input:checked + .jkl-checkbox__label .jkl-checkbox__check-mark::after {
|
|
2441
|
-
animation: jkl-checkbox-checked-
|
|
2452
|
+
animation: jkl-checkbox-checked-uat1iho 150ms ease-in-out forwards;
|
|
2442
2453
|
opacity: 1;
|
|
2443
2454
|
}
|
|
2444
2455
|
.jkl-checkbox__input:indeterminate:not(:checked) + .jkl-checkbox__label .jkl-checkbox__indeterminate-mark::after {
|
|
2445
|
-
animation: jkl-checkbox-indeterminate-
|
|
2456
|
+
animation: jkl-checkbox-indeterminate-uat1iii 150ms ease-in-out forwards;
|
|
2446
2457
|
opacity: 1;
|
|
2447
2458
|
}
|
|
2448
2459
|
.jkl-checkbox__input:focus-visible + .jkl-checkbox__label {
|
|
@@ -3824,7 +3835,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-calendar-date-
|
|
|
3824
3835
|
padding: 1rem 0 2.5rem 0;
|
|
3825
3836
|
}
|
|
3826
3837
|
|
|
3827
|
-
@keyframes jkl-show-
|
|
3838
|
+
@keyframes jkl-show-uat1iij {
|
|
3828
3839
|
from {
|
|
3829
3840
|
transform: translate3d(0, 0.5rem, 0);
|
|
3830
3841
|
opacity: 0;
|
|
@@ -3859,7 +3870,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-calendar-date-
|
|
|
3859
3870
|
}
|
|
3860
3871
|
}
|
|
3861
3872
|
.jkl-feedback__fade-in {
|
|
3862
|
-
animation: jkl-show-
|
|
3873
|
+
animation: jkl-show-uat1iij 0.25s ease-out;
|
|
3863
3874
|
}
|
|
3864
3875
|
.jkl-feedback__buttons {
|
|
3865
3876
|
display: flex;
|
|
@@ -4099,7 +4110,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4099
4110
|
--background-color: var(--jkl-color-background-alert-success);
|
|
4100
4111
|
}
|
|
4101
4112
|
.jkl-message--dismissed {
|
|
4102
|
-
animation: jkl-dismiss-
|
|
4113
|
+
animation: jkl-dismiss-uat1iiq 400ms ease-in-out forwards;
|
|
4103
4114
|
transition: visibility 0ms 400ms;
|
|
4104
4115
|
visibility: hidden;
|
|
4105
4116
|
}
|
|
@@ -4119,7 +4130,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4119
4130
|
}
|
|
4120
4131
|
}
|
|
4121
4132
|
|
|
4122
|
-
@keyframes jkl-dismiss-
|
|
4133
|
+
@keyframes jkl-dismiss-uat1iiq {
|
|
4123
4134
|
from {
|
|
4124
4135
|
opacity: 1;
|
|
4125
4136
|
transform: translate3d(0, 0, 0);
|
|
@@ -4175,7 +4186,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4175
4186
|
--jkl-radio-button-label-font-weight: var(--jkl-small-font-weight);
|
|
4176
4187
|
}
|
|
4177
4188
|
|
|
4178
|
-
@keyframes jkl-dot-in-
|
|
4189
|
+
@keyframes jkl-dot-in-uat1ijp {
|
|
4179
4190
|
0% {
|
|
4180
4191
|
transform: scale(0.8);
|
|
4181
4192
|
}
|
|
@@ -4220,7 +4231,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4220
4231
|
}
|
|
4221
4232
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
4222
4233
|
--dot-color: var(--jkl-color-border-action);
|
|
4223
|
-
animation: jkl-dot-in-
|
|
4234
|
+
animation: jkl-dot-in-uat1ijp 150ms ease;
|
|
4224
4235
|
}
|
|
4225
4236
|
@media screen and (forced-colors: active) {
|
|
4226
4237
|
.jkl-radio-button__input:checked + .jkl-radio-button__label > .jkl-radio-button__dot::after {
|
|
@@ -4370,7 +4381,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4370
4381
|
--background-color: var(--jkl-color-background-container-high);
|
|
4371
4382
|
}
|
|
4372
4383
|
|
|
4373
|
-
@keyframes jkl-dot-in-
|
|
4384
|
+
@keyframes jkl-dot-in-uat1ikn {
|
|
4374
4385
|
0% {
|
|
4375
4386
|
transform: scale(0.8);
|
|
4376
4387
|
}
|
|
@@ -4418,7 +4429,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4418
4429
|
}
|
|
4419
4430
|
}
|
|
4420
4431
|
.jkl-radio-panel__input:checked + .jkl-radio-panel__decorator::after {
|
|
4421
|
-
animation: jkl-dot-in-
|
|
4432
|
+
animation: jkl-dot-in-uat1ikn 150ms ease;
|
|
4422
4433
|
}
|
|
4423
4434
|
.jkl-radio-panel:has(:checked) {
|
|
4424
4435
|
--radio-dot-color: var(--jkl-color-border-action);
|
|
@@ -4430,7 +4441,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4430
4441
|
--radio-dot-color: var(--jkl-color-text-on-alert);
|
|
4431
4442
|
}
|
|
4432
4443
|
|
|
4433
|
-
@keyframes jkl-checkbox-checked-
|
|
4444
|
+
@keyframes jkl-checkbox-checked-uat1iku {
|
|
4434
4445
|
0% {
|
|
4435
4446
|
width: 0;
|
|
4436
4447
|
height: 0;
|
|
@@ -4493,7 +4504,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
4493
4504
|
}
|
|
4494
4505
|
}
|
|
4495
4506
|
.jkl-checkbox-panel:has(:checked) .jkl-checkbox-panel__decorator::after {
|
|
4496
|
-
animation: jkl-checkbox-checked-
|
|
4507
|
+
animation: jkl-checkbox-checked-uat1iku 150ms ease-in-out forwards;
|
|
4497
4508
|
opacity: 1;
|
|
4498
4509
|
}
|
|
4499
4510
|
.jkl-checkbox-panel:has([aria-invalid=true]) {
|
|
@@ -5268,11 +5279,11 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) input:focus + .jkl-
|
|
|
5268
5279
|
}
|
|
5269
5280
|
|
|
5270
5281
|
.jkl-countdown__tracker {
|
|
5271
|
-
animation: jkl-downcount-
|
|
5282
|
+
animation: jkl-downcount-uat1ilh var(--duration) linear forwards;
|
|
5272
5283
|
animation-play-state: var(--play-state, running);
|
|
5273
5284
|
}
|
|
5274
5285
|
|
|
5275
|
-
@keyframes jkl-downcount-
|
|
5286
|
+
@keyframes jkl-downcount-uat1ilh {
|
|
5276
5287
|
from {
|
|
5277
5288
|
width: 100%;
|
|
5278
5289
|
}
|
|
@@ -5473,7 +5484,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message
|
|
|
5473
5484
|
margin-bottom: 0;
|
|
5474
5485
|
}
|
|
5475
5486
|
.jkl-system-message--dismissed {
|
|
5476
|
-
animation: jkl-dismiss-
|
|
5487
|
+
animation: jkl-dismiss-uat1im5 400ms ease-in forwards;
|
|
5477
5488
|
transition: visibility 0ms 400ms;
|
|
5478
5489
|
visibility: hidden;
|
|
5479
5490
|
}
|
|
@@ -5505,7 +5516,7 @@ html:not([data-mousenavigation]):not([data-touchnavigation]) .jkl-system-message
|
|
|
5505
5516
|
}
|
|
5506
5517
|
}
|
|
5507
5518
|
|
|
5508
|
-
@keyframes jkl-dismiss-
|
|
5519
|
+
@keyframes jkl-dismiss-uat1im5 {
|
|
5509
5520
|
from {
|
|
5510
5521
|
opacity: 1;
|
|
5511
5522
|
transform: translate3d(0, 0, 0);
|
|
@@ -6386,14 +6397,14 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6386
6397
|
|
|
6387
6398
|
.jkl-toast[data-animation=entering],
|
|
6388
6399
|
.jkl-toast[data-animation=queued] {
|
|
6389
|
-
animation: jkl-entering-
|
|
6400
|
+
animation: jkl-entering-uat1imz 200ms ease-out forwards;
|
|
6390
6401
|
}
|
|
6391
6402
|
|
|
6392
6403
|
.jkl-toast[data-animation=exiting] {
|
|
6393
|
-
animation: jkl-exiting-
|
|
6404
|
+
animation: jkl-exiting-uat1inl 150ms ease-in forwards;
|
|
6394
6405
|
}
|
|
6395
6406
|
|
|
6396
|
-
@keyframes jkl-entering-
|
|
6407
|
+
@keyframes jkl-entering-uat1imz {
|
|
6397
6408
|
from {
|
|
6398
6409
|
opacity: 0;
|
|
6399
6410
|
transform: translate3d(0, 50%, 0);
|
|
@@ -6403,7 +6414,7 @@ html:not([data-mousenavigation]) .jkl-table-pagination__previous:focus, html:not
|
|
|
6403
6414
|
transform: translate3d(0, 0, 0);
|
|
6404
6415
|
}
|
|
6405
6416
|
}
|
|
6406
|
-
@keyframes jkl-exiting-
|
|
6417
|
+
@keyframes jkl-exiting-uat1inl {
|
|
6407
6418
|
from {
|
|
6408
6419
|
opacity: 1;
|
|
6409
6420
|
transform: translate3d(0, 0, 0);
|