@agility/plenum-ui 1.3.37 → 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/ToggleSwitch/ToggleSwitch.d.ts +11 -12
- package/lib/components/ToggleSwitch/ToggleSwitch.stories.d.ts +15 -3
- package/lib/index.esm.js +23 -15
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +23 -15
- package/lib/index.js.map +1 -1
- package/lib/tailwind.css +20 -0
- package/package.json +1 -1
package/lib/tailwind.css
CHANGED
|
@@ -1468,6 +1468,11 @@ select {
|
|
|
1468
1468
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
1469
1469
|
}
|
|
1470
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
|
+
|
|
1471
1476
|
.bg-purple-500 {
|
|
1472
1477
|
--tw-bg-opacity: 1;
|
|
1473
1478
|
background-color: rgb(121 51 221 / var(--tw-bg-opacity));
|
|
@@ -1879,6 +1884,11 @@ select {
|
|
|
1879
1884
|
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
1880
1885
|
}
|
|
1881
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
|
+
|
|
1882
1892
|
.focus-within\:ring-opacity-75:focus-within {
|
|
1883
1893
|
--tw-ring-opacity: 0.75;
|
|
1884
1894
|
}
|
|
@@ -1998,6 +2008,11 @@ select {
|
|
|
1998
2008
|
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
1999
2009
|
}
|
|
2000
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
|
+
|
|
2001
2016
|
.focus\:ring-red-500:focus {
|
|
2002
2017
|
--tw-ring-opacity: 1;
|
|
2003
2018
|
--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity));
|
|
@@ -2018,6 +2033,11 @@ select {
|
|
|
2018
2033
|
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity));
|
|
2019
2034
|
}
|
|
2020
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
|
+
|
|
2021
2041
|
.focus-visible\:ring-opacity-75:focus-visible {
|
|
2022
2042
|
--tw-ring-opacity: 0.75;
|
|
2023
2043
|
}
|