@agility/plenum-ui 1.3.36 → 1.3.38
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/Button/Button.d.ts +1 -1
- 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 +35 -23
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +35 -23
- package/lib/index.js.map +1 -1
- package/lib/tailwind.css +39 -2
- package/lib/util/Loader.d.ts +2 -2
- package/package.json +1 -1
package/lib/tailwind.css
CHANGED
|
@@ -776,6 +776,10 @@ select {
|
|
|
776
776
|
margin-right: 0.75rem;
|
|
777
777
|
}
|
|
778
778
|
|
|
779
|
+
.mr-2 {
|
|
780
|
+
margin-right: 0.5rem;
|
|
781
|
+
}
|
|
782
|
+
|
|
779
783
|
.ml-0 {
|
|
780
784
|
margin-left: 0px;
|
|
781
785
|
}
|
|
@@ -1163,6 +1167,10 @@ select {
|
|
|
1163
1167
|
justify-content: center;
|
|
1164
1168
|
}
|
|
1165
1169
|
|
|
1170
|
+
.justify-between {
|
|
1171
|
+
justify-content: space-between;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1166
1174
|
.gap-4 {
|
|
1167
1175
|
gap: 1rem;
|
|
1168
1176
|
}
|
|
@@ -1723,6 +1731,10 @@ select {
|
|
|
1723
1731
|
opacity: 0.6;
|
|
1724
1732
|
}
|
|
1725
1733
|
|
|
1734
|
+
.opacity-75 {
|
|
1735
|
+
opacity: 0.75;
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1726
1738
|
.shadow-lg {
|
|
1727
1739
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1728
1740
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -1852,6 +1864,21 @@ select {
|
|
|
1852
1864
|
z-index: 10;
|
|
1853
1865
|
}
|
|
1854
1866
|
|
|
1867
|
+
.focus-within\:ring-2:focus-within {
|
|
1868
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1869
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1870
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
.focus-within\:ring-purple-500:focus-within {
|
|
1874
|
+
--tw-ring-opacity: 1;
|
|
1875
|
+
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
.focus-within\:ring-opacity-75:focus-within {
|
|
1879
|
+
--tw-ring-opacity: 0.75;
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1855
1882
|
.hover\:\!border-r-0:hover {
|
|
1856
1883
|
border-right-width: 0px !important;
|
|
1857
1884
|
}
|
|
@@ -1956,6 +1983,12 @@ select {
|
|
|
1956
1983
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1957
1984
|
}
|
|
1958
1985
|
|
|
1986
|
+
.focus\:ring-2:focus {
|
|
1987
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1988
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1989
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1959
1992
|
.focus\:ring-purple-500:focus {
|
|
1960
1993
|
--tw-ring-opacity: 1;
|
|
1961
1994
|
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
@@ -1966,15 +1999,19 @@ select {
|
|
|
1966
1999
|
--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity));
|
|
1967
2000
|
}
|
|
1968
2001
|
|
|
2002
|
+
.focus\:ring-opacity-75:focus {
|
|
2003
|
+
--tw-ring-opacity: 0.75;
|
|
2004
|
+
}
|
|
2005
|
+
|
|
1969
2006
|
.focus-visible\:ring-2:focus-visible {
|
|
1970
2007
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1971
2008
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1972
2009
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1973
2010
|
}
|
|
1974
2011
|
|
|
1975
|
-
.focus-visible\:ring-
|
|
2012
|
+
.focus-visible\:ring-purple-500:focus-visible {
|
|
1976
2013
|
--tw-ring-opacity: 1;
|
|
1977
|
-
--tw-ring-color: rgb(
|
|
2014
|
+
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
1978
2015
|
}
|
|
1979
2016
|
|
|
1980
2017
|
.focus-visible\:ring-opacity-75:focus-visible {
|
package/lib/util/Loader.d.ts
CHANGED