@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.
Files changed (44) hide show
  1. package/coverage/base.css +224 -0
  2. package/coverage/block-navigation.js +87 -0
  3. package/coverage/components/Button/Button.tsx.html +739 -0
  4. package/coverage/components/Button/index.html +116 -0
  5. package/coverage/components/Forms/BaseField/BaseField.tsx.html +415 -0
  6. package/coverage/components/Forms/BaseField/index.html +116 -0
  7. package/coverage/components/Forms/Checkbox/Checkbox.tsx.html +346 -0
  8. package/coverage/components/Forms/Checkbox/index.html +116 -0
  9. package/coverage/components/Forms/InputCounter/InputCounter.tsx.html +139 -0
  10. package/coverage/components/Forms/InputCounter/index.html +116 -0
  11. package/coverage/components/Forms/InputLabel/InputLabel.tsx.html +211 -0
  12. package/coverage/components/Forms/InputLabel/index.html +131 -0
  13. package/coverage/components/Forms/InputLabel/index.ts.html +94 -0
  14. package/coverage/components/Forms/Radio/Radio.tsx.html +364 -0
  15. package/coverage/components/Forms/Radio/index.html +116 -0
  16. package/coverage/components/Forms/Select/Select.tsx.html +394 -0
  17. package/coverage/components/Forms/Select/index.html +116 -0
  18. package/coverage/components/Forms/TextInputAddon/InputCta/InputCta.tsx.html +271 -0
  19. package/coverage/components/Forms/TextInputAddon/InputCta/index.html +116 -0
  20. package/coverage/components/Forms/TextInputSelect/InputSelect/InputSelect.tsx.html +259 -0
  21. package/coverage/components/Forms/TextInputSelect/InputSelect/index.html +116 -0
  22. package/coverage/components/Switch/Switch.tsx.html +253 -0
  23. package/coverage/components/Switch/index.html +116 -0
  24. package/coverage/components/ToggleSwitch/ToggleSwitch.tsx.html +424 -0
  25. package/coverage/components/ToggleSwitch/index.html +116 -0
  26. package/coverage/coverage-final.json +14 -0
  27. package/coverage/favicon.png +0 -0
  28. package/coverage/index.html +251 -0
  29. package/coverage/prettify.css +1 -0
  30. package/coverage/prettify.js +2 -0
  31. package/coverage/sort-arrow-sprite.png +0 -0
  32. package/coverage/sorter.js +196 -0
  33. package/coverage/util/DynamicIcons.tsx.html +151 -0
  34. package/coverage/util/Loader.tsx.html +139 -0
  35. package/coverage/util/index.html +146 -0
  36. package/coverage/util/useID.ts.html +133 -0
  37. package/lib/components/ToggleSwitch/ToggleSwitch.d.ts +11 -12
  38. package/lib/components/ToggleSwitch/ToggleSwitch.stories.d.ts +15 -3
  39. package/lib/index.esm.js +23 -15
  40. package/lib/index.esm.js.map +1 -1
  41. package/lib/index.js +23 -15
  42. package/lib/index.js.map +1 -1
  43. package/lib/tailwind.css +20 -0
  44. 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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agility/plenum-ui",
3
- "version": "1.3.37",
3
+ "version": "1.3.39",
4
4
  "description": "Components that are part of the Agility CMS design system.",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.esm.js",