@agility/plenum-ui 1.3.38 → 1.3.40
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/Forms/InputCounter/InputCounter.d.ts +2 -2
- package/lib/components/ToggleSwitch/ToggleSwitch.d.ts +11 -12
- package/lib/components/ToggleSwitch/ToggleSwitch.stories.d.ts +15 -3
- package/lib/index.esm.js +43 -35
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +43 -35
- package/lib/index.js.map +1 -1
- package/lib/tailwind.css +28 -0
- package/lib/util/Loader.d.ts +2 -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
|
}
|
|
@@ -1175,6 +1179,10 @@ select {
|
|
|
1175
1179
|
gap: 1rem;
|
|
1176
1180
|
}
|
|
1177
1181
|
|
|
1182
|
+
.gap-1 {
|
|
1183
|
+
gap: 0.25rem;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1178
1186
|
.gap-3 {
|
|
1179
1187
|
gap: 0.75rem;
|
|
1180
1188
|
}
|
|
@@ -1464,6 +1472,11 @@ select {
|
|
|
1464
1472
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
1465
1473
|
}
|
|
1466
1474
|
|
|
1475
|
+
.\!bg-red-400 {
|
|
1476
|
+
--tw-bg-opacity: 1 !important;
|
|
1477
|
+
background-color: rgb(248 113 113 / var(--tw-bg-opacity)) !important;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1467
1480
|
.bg-purple-500 {
|
|
1468
1481
|
--tw-bg-opacity: 1;
|
|
1469
1482
|
background-color: rgb(121 51 221 / var(--tw-bg-opacity));
|
|
@@ -1875,6 +1888,11 @@ select {
|
|
|
1875
1888
|
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
1876
1889
|
}
|
|
1877
1890
|
|
|
1891
|
+
.focus-within\:ring-red-600:focus-within {
|
|
1892
|
+
--tw-ring-opacity: 1;
|
|
1893
|
+
--tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity));
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1878
1896
|
.focus-within\:ring-opacity-75:focus-within {
|
|
1879
1897
|
--tw-ring-opacity: 0.75;
|
|
1880
1898
|
}
|
|
@@ -1994,6 +2012,11 @@ select {
|
|
|
1994
2012
|
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
1995
2013
|
}
|
|
1996
2014
|
|
|
2015
|
+
.focus\:ring-red-600:focus {
|
|
2016
|
+
--tw-ring-opacity: 1;
|
|
2017
|
+
--tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity));
|
|
2018
|
+
}
|
|
2019
|
+
|
|
1997
2020
|
.focus\:ring-red-500:focus {
|
|
1998
2021
|
--tw-ring-opacity: 1;
|
|
1999
2022
|
--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity));
|
|
@@ -2014,6 +2037,11 @@ select {
|
|
|
2014
2037
|
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
2015
2038
|
}
|
|
2016
2039
|
|
|
2040
|
+
.focus-visible\:ring-red-600:focus-visible {
|
|
2041
|
+
--tw-ring-opacity: 1;
|
|
2042
|
+
--tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity));
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2017
2045
|
.focus-visible\:ring-opacity-75:focus-visible {
|
|
2018
2046
|
--tw-ring-opacity: 0.75;
|
|
2019
2047
|
}
|
package/lib/util/Loader.d.ts
CHANGED