@agility/plenum-ui 1.3.35 → 1.3.37
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/lib/components/ToggleSwitch/ToggleSwitch.d.ts +29 -0
- package/lib/components/ToggleSwitch/ToggleSwitch.stories.d.ts +9 -0
- package/lib/components/ToggleSwitch/ToggleSwitch.test.d.ts +1 -0
- package/lib/components/ToggleSwitch/index.d.ts +1 -0
- package/lib/index.d.ts +14 -14
- package/lib/index.esm.js +31 -17
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +31 -17
- package/lib/index.js.map +1 -1
- package/lib/tailwind.css +43 -2
- package/package.json +1 -1
package/lib/tailwind.css
CHANGED
|
@@ -756,6 +756,10 @@ select {
|
|
|
756
756
|
margin: auto;
|
|
757
757
|
}
|
|
758
758
|
|
|
759
|
+
.m-0 {
|
|
760
|
+
margin: 0px;
|
|
761
|
+
}
|
|
762
|
+
|
|
759
763
|
.\!mt-1 {
|
|
760
764
|
margin-top: 0.25rem !important;
|
|
761
765
|
}
|
|
@@ -776,6 +780,10 @@ select {
|
|
|
776
780
|
margin-right: 0.75rem;
|
|
777
781
|
}
|
|
778
782
|
|
|
783
|
+
.mr-2 {
|
|
784
|
+
margin-right: 0.5rem;
|
|
785
|
+
}
|
|
786
|
+
|
|
779
787
|
.ml-0 {
|
|
780
788
|
margin-left: 0px;
|
|
781
789
|
}
|
|
@@ -1163,6 +1171,10 @@ select {
|
|
|
1163
1171
|
justify-content: center;
|
|
1164
1172
|
}
|
|
1165
1173
|
|
|
1174
|
+
.justify-between {
|
|
1175
|
+
justify-content: space-between;
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1166
1178
|
.gap-4 {
|
|
1167
1179
|
gap: 1rem;
|
|
1168
1180
|
}
|
|
@@ -1723,6 +1735,10 @@ select {
|
|
|
1723
1735
|
opacity: 0.6;
|
|
1724
1736
|
}
|
|
1725
1737
|
|
|
1738
|
+
.opacity-75 {
|
|
1739
|
+
opacity: 0.75;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1726
1742
|
.shadow-lg {
|
|
1727
1743
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1728
1744
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -1852,6 +1868,21 @@ select {
|
|
|
1852
1868
|
z-index: 10;
|
|
1853
1869
|
}
|
|
1854
1870
|
|
|
1871
|
+
.focus-within\:ring-2:focus-within {
|
|
1872
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1873
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1874
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
.focus-within\:ring-purple-500:focus-within {
|
|
1878
|
+
--tw-ring-opacity: 1;
|
|
1879
|
+
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
.focus-within\:ring-opacity-75:focus-within {
|
|
1883
|
+
--tw-ring-opacity: 0.75;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1855
1886
|
.hover\:\!border-r-0:hover {
|
|
1856
1887
|
border-right-width: 0px !important;
|
|
1857
1888
|
}
|
|
@@ -1956,6 +1987,12 @@ select {
|
|
|
1956
1987
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1957
1988
|
}
|
|
1958
1989
|
|
|
1990
|
+
.focus\:ring-2:focus {
|
|
1991
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1992
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1993
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1959
1996
|
.focus\:ring-purple-500:focus {
|
|
1960
1997
|
--tw-ring-opacity: 1;
|
|
1961
1998
|
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
@@ -1966,15 +2003,19 @@ select {
|
|
|
1966
2003
|
--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity));
|
|
1967
2004
|
}
|
|
1968
2005
|
|
|
2006
|
+
.focus\:ring-opacity-75:focus {
|
|
2007
|
+
--tw-ring-opacity: 0.75;
|
|
2008
|
+
}
|
|
2009
|
+
|
|
1969
2010
|
.focus-visible\:ring-2:focus-visible {
|
|
1970
2011
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1971
2012
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1972
2013
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1973
2014
|
}
|
|
1974
2015
|
|
|
1975
|
-
.focus-visible\:ring-
|
|
2016
|
+
.focus-visible\:ring-purple-500:focus-visible {
|
|
1976
2017
|
--tw-ring-opacity: 1;
|
|
1977
|
-
--tw-ring-color: rgb(
|
|
2018
|
+
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
1978
2019
|
}
|
|
1979
2020
|
|
|
1980
2021
|
.focus-visible\:ring-opacity-75:focus-visible {
|