@useloops/design-system 1.4.248 → 1.4.250
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/esm/index.js +2 -2
- package/dist/index.d.ts +16 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
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
|
};
|
|
@@ -1749,7 +1764,6 @@ interface PlanFeatureTableData {
|
|
|
1749
1764
|
'04-scale': PlanHeading;
|
|
1750
1765
|
};
|
|
1751
1766
|
rows: {
|
|
1752
|
-
'01-seats': PlanRow;
|
|
1753
1767
|
'02-servicing': PlanRow;
|
|
1754
1768
|
'03-respondents': PlanRow;
|
|
1755
1769
|
'04-questions': PlanRow;
|
|
@@ -1766,7 +1780,7 @@ interface PlanFeatureTableData {
|
|
|
1766
1780
|
|
|
1767
1781
|
interface PlanFeatureTableProps {
|
|
1768
1782
|
currencySymbol: string;
|
|
1769
|
-
data
|
|
1783
|
+
data?: PlanFeatureTableData;
|
|
1770
1784
|
starterPrice: string;
|
|
1771
1785
|
starterRespondentPrice: string;
|
|
1772
1786
|
teamPrice: string;
|