@agility/plenum-ui 1.3.38 → 1.3.39
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/coverage/base.css +224 -0
- package/coverage/block-navigation.js +87 -0
- package/coverage/components/Button/Button.tsx.html +739 -0
- package/coverage/components/Button/index.html +116 -0
- package/coverage/components/Forms/BaseField/BaseField.tsx.html +415 -0
- package/coverage/components/Forms/BaseField/index.html +116 -0
- package/coverage/components/Forms/Checkbox/Checkbox.tsx.html +346 -0
- package/coverage/components/Forms/Checkbox/index.html +116 -0
- package/coverage/components/Forms/InputCounter/InputCounter.tsx.html +139 -0
- package/coverage/components/Forms/InputCounter/index.html +116 -0
- package/coverage/components/Forms/InputLabel/InputLabel.tsx.html +211 -0
- package/coverage/components/Forms/InputLabel/index.html +131 -0
- package/coverage/components/Forms/InputLabel/index.ts.html +94 -0
- package/coverage/components/Forms/Radio/Radio.tsx.html +364 -0
- package/coverage/components/Forms/Radio/index.html +116 -0
- package/coverage/components/Forms/Select/Select.tsx.html +394 -0
- package/coverage/components/Forms/Select/index.html +116 -0
- package/coverage/components/Forms/TextInputAddon/InputCta/InputCta.tsx.html +271 -0
- package/coverage/components/Forms/TextInputAddon/InputCta/index.html +116 -0
- package/coverage/components/Forms/TextInputSelect/InputSelect/InputSelect.tsx.html +259 -0
- package/coverage/components/Forms/TextInputSelect/InputSelect/index.html +116 -0
- package/coverage/components/Switch/Switch.tsx.html +253 -0
- package/coverage/components/Switch/index.html +116 -0
- package/coverage/components/ToggleSwitch/ToggleSwitch.tsx.html +424 -0
- package/coverage/components/ToggleSwitch/index.html +116 -0
- package/coverage/coverage-final.json +14 -0
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +251 -0
- package/coverage/prettify.css +1 -0
- package/coverage/prettify.js +2 -0
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +196 -0
- package/coverage/util/DynamicIcons.tsx.html +151 -0
- package/coverage/util/Loader.tsx.html +139 -0
- package/coverage/util/index.html +146 -0
- package/coverage/util/useID.ts.html +133 -0
- package/lib/components/Button/Button.d.ts +1 -1
- package/lib/components/ToggleSwitch/ToggleSwitch.d.ts +11 -12
- package/lib/components/ToggleSwitch/ToggleSwitch.stories.d.ts +15 -3
- package/lib/index.esm.js +33 -23
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +33 -23
- package/lib/index.js.map +1 -1
- package/lib/tailwind.css +24 -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
|
}
|
|
@@ -1464,6 +1468,11 @@ select {
|
|
|
1464
1468
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
1465
1469
|
}
|
|
1466
1470
|
|
|
1471
|
+
.\!bg-red-400 {
|
|
1472
|
+
--tw-bg-opacity: 1 !important;
|
|
1473
|
+
background-color: rgb(248 113 113 / var(--tw-bg-opacity)) !important;
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1467
1476
|
.bg-purple-500 {
|
|
1468
1477
|
--tw-bg-opacity: 1;
|
|
1469
1478
|
background-color: rgb(121 51 221 / var(--tw-bg-opacity));
|
|
@@ -1875,6 +1884,11 @@ select {
|
|
|
1875
1884
|
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
1876
1885
|
}
|
|
1877
1886
|
|
|
1887
|
+
.focus-within\:ring-red-600:focus-within {
|
|
1888
|
+
--tw-ring-opacity: 1;
|
|
1889
|
+
--tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity));
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1878
1892
|
.focus-within\:ring-opacity-75:focus-within {
|
|
1879
1893
|
--tw-ring-opacity: 0.75;
|
|
1880
1894
|
}
|
|
@@ -1994,6 +2008,11 @@ select {
|
|
|
1994
2008
|
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
1995
2009
|
}
|
|
1996
2010
|
|
|
2011
|
+
.focus\:ring-red-600:focus {
|
|
2012
|
+
--tw-ring-opacity: 1;
|
|
2013
|
+
--tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity));
|
|
2014
|
+
}
|
|
2015
|
+
|
|
1997
2016
|
.focus\:ring-red-500:focus {
|
|
1998
2017
|
--tw-ring-opacity: 1;
|
|
1999
2018
|
--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity));
|
|
@@ -2014,6 +2033,11 @@ select {
|
|
|
2014
2033
|
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
2015
2034
|
}
|
|
2016
2035
|
|
|
2036
|
+
.focus-visible\:ring-red-600:focus-visible {
|
|
2037
|
+
--tw-ring-opacity: 1;
|
|
2038
|
+
--tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity));
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2017
2041
|
.focus-visible\:ring-opacity-75:focus-visible {
|
|
2018
2042
|
--tw-ring-opacity: 0.75;
|
|
2019
2043
|
}
|
package/lib/util/Loader.d.ts
CHANGED