@useloops/design-system 1.4.249 → 1.4.251

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/dist/index.d.ts CHANGED
@@ -857,6 +857,9 @@ declare const passwordValidation: (min?: number) => {
857
857
  declare const subtle: (theme: Theme) => {
858
858
  backgroundColor: string;
859
859
  fontWeight: number;
860
+ '&:focus:before': {
861
+ boxShadow: string;
862
+ };
860
863
  '&:focus-visible': {
861
864
  boxShadow: string;
862
865
  };
@@ -864,6 +867,9 @@ declare const subtle: (theme: Theme) => {
864
867
  declare const outlined$1: (theme: Theme) => {
865
868
  backgroundColor: string;
866
869
  border: string;
870
+ '&:focus:before': {
871
+ boxShadow: string;
872
+ };
867
873
  '&:hover': {
868
874
  backgroundColor: string;
869
875
  };
@@ -879,6 +885,9 @@ declare const outlined$1: (theme: Theme) => {
879
885
  };
880
886
  declare const secondary: (theme: Theme) => {
881
887
  backgroundColor: ColorRange;
888
+ '&:focus:before': {
889
+ boxShadow: string;
890
+ };
882
891
  '&:hover': {
883
892
  backgroundColor: ColorRange;
884
893
  };
@@ -892,6 +901,9 @@ declare const secondary: (theme: Theme) => {
892
901
  declare const primary: (theme: Theme) => {
893
902
  backgroundColor: ColorRange;
894
903
  color: string;
904
+ '&:focus:before': {
905
+ boxShadow: string;
906
+ };
895
907
  '&:hover': {
896
908
  backgroundColor: ColorRange;
897
909
  color: string;
@@ -916,6 +928,9 @@ declare const primary: (theme: Theme) => {
916
928
  declare const buttonInteraction: (theme: Theme, active?: boolean) => {
917
929
  backgroundColor: string;
918
930
  fontWeight: number;
931
+ '&:focus:before': {
932
+ boxShadow: string;
933
+ };
919
934
  '&:focus-visible': {
920
935
  boxShadow: string;
921
936
  };