@snabcentr/client-ui 1.3.4 → 1.4.0
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.
Potentially problematic release.
This version of @snabcentr/client-ui might be problematic. Click here for more details.
- package/esm2020/auth/sign-up-form/sc-sign-up-form.component.mjs +2 -2
- package/esm2020/contragents/add-contragent-dialog/sc-add-contragent-dialog.component.mjs +2 -2
- package/esm2020/contragents/new-contragent-form/sc-new-contragent-form.component.mjs +2 -2
- package/fesm2015/snabcentr-client-ui.mjs +3 -3
- package/fesm2015/snabcentr-client-ui.mjs.map +1 -1
- package/fesm2020/snabcentr-client-ui.mjs +3 -3
- package/fesm2020/snabcentr-client-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/tailwind/tailwind.scss +30 -1
package/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
! tailwindcss v3.4.
|
2
|
+
! tailwindcss v3.4.7 | MIT License | https://tailwindcss.com
|
3
3
|
*/
|
4
4
|
|
5
5
|
/*
|
@@ -588,6 +588,18 @@ video {
|
|
588
588
|
}
|
589
589
|
}
|
590
590
|
|
591
|
+
.sr-only {
|
592
|
+
position: absolute;
|
593
|
+
width: 1px;
|
594
|
+
height: 1px;
|
595
|
+
padding: 0;
|
596
|
+
margin: -1px;
|
597
|
+
overflow: hidden;
|
598
|
+
clip: rect(0, 0, 0, 0);
|
599
|
+
white-space: nowrap;
|
600
|
+
border-width: 0;
|
601
|
+
}
|
602
|
+
|
591
603
|
.pointer-events-none {
|
592
604
|
pointer-events: none;
|
593
605
|
}
|
@@ -931,10 +943,18 @@ video {
|
|
931
943
|
flex: 1 1 auto;
|
932
944
|
}
|
933
945
|
|
946
|
+
.flex-shrink {
|
947
|
+
flex-shrink: 1;
|
948
|
+
}
|
949
|
+
|
934
950
|
.shrink-0 {
|
935
951
|
flex-shrink: 0;
|
936
952
|
}
|
937
953
|
|
954
|
+
.flex-grow {
|
955
|
+
flex-grow: 1;
|
956
|
+
}
|
957
|
+
|
938
958
|
.grow {
|
939
959
|
flex-grow: 1;
|
940
960
|
}
|
@@ -947,6 +967,10 @@ video {
|
|
947
967
|
table-layout: auto;
|
948
968
|
}
|
949
969
|
|
970
|
+
.border-collapse {
|
971
|
+
border-collapse: collapse;
|
972
|
+
}
|
973
|
+
|
950
974
|
.scale-\[3\] {
|
951
975
|
--tw-scale-x: 3;
|
952
976
|
--tw-scale-y: 3;
|
@@ -1542,6 +1566,11 @@ video {
|
|
1542
1566
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
1543
1567
|
}
|
1544
1568
|
|
1569
|
+
.backdrop-filter {
|
1570
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
1571
|
+
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
1572
|
+
}
|
1573
|
+
|
1545
1574
|
.transition {
|
1546
1575
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
1547
1576
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|