@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.
Files changed (46) 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/Button/Button.d.ts +1 -1
  38. package/lib/components/ToggleSwitch/ToggleSwitch.d.ts +11 -12
  39. package/lib/components/ToggleSwitch/ToggleSwitch.stories.d.ts +15 -3
  40. package/lib/index.esm.js +33 -23
  41. package/lib/index.esm.js.map +1 -1
  42. package/lib/index.js +33 -23
  43. package/lib/index.js.map +1 -1
  44. package/lib/tailwind.css +24 -0
  45. package/lib/util/Loader.d.ts +2 -2
  46. 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
  }
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  interface LoaderProps {
3
- className?: string;
3
+ classes?: string;
4
4
  }
5
- export declare function Loader({ className }: LoaderProps): JSX.Element;
5
+ export declare function Loader({ classes }: LoaderProps): JSX.Element;
6
6
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agility/plenum-ui",
3
- "version": "1.3.38",
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",