@asgardeo/javascript 0.14.0 → 0.15.0
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/cjs/index.js +25 -0
- package/dist/cjs/index.js.map +2 -2
- package/dist/index.js +25 -0
- package/dist/index.js.map +2 -2
- package/dist/theme/types.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3759,11 +3759,13 @@ var lightTheme = {
|
|
|
3759
3759
|
error: {
|
|
3760
3760
|
contrastText: "#d52828",
|
|
3761
3761
|
dark: "#b71c1c",
|
|
3762
|
+
light: "#fef2f2",
|
|
3762
3763
|
main: "#d32f2f"
|
|
3763
3764
|
},
|
|
3764
3765
|
info: {
|
|
3765
3766
|
contrastText: "#43aeda",
|
|
3766
3767
|
dark: "#01579b",
|
|
3768
|
+
light: "#eff6ff",
|
|
3767
3769
|
main: "#bbebff"
|
|
3768
3770
|
},
|
|
3769
3771
|
primary: {
|
|
@@ -3774,11 +3776,13 @@ var lightTheme = {
|
|
|
3774
3776
|
secondary: {
|
|
3775
3777
|
contrastText: "#ffffff",
|
|
3776
3778
|
dark: "#212121",
|
|
3779
|
+
light: "#f3f4f6",
|
|
3777
3780
|
main: "#424242"
|
|
3778
3781
|
},
|
|
3779
3782
|
success: {
|
|
3780
3783
|
contrastText: "#00a807",
|
|
3781
3784
|
dark: "#388e3c",
|
|
3785
|
+
light: "#f0fdf4",
|
|
3782
3786
|
main: "#4caf50"
|
|
3783
3787
|
},
|
|
3784
3788
|
text: {
|
|
@@ -3789,6 +3793,7 @@ var lightTheme = {
|
|
|
3789
3793
|
warning: {
|
|
3790
3794
|
contrastText: "#be7100",
|
|
3791
3795
|
dark: "#f57c00",
|
|
3796
|
+
light: "#fffbeb",
|
|
3792
3797
|
main: "#ff9800"
|
|
3793
3798
|
}
|
|
3794
3799
|
},
|
|
@@ -3868,11 +3873,13 @@ var darkTheme = {
|
|
|
3868
3873
|
error: {
|
|
3869
3874
|
contrastText: "#d52828",
|
|
3870
3875
|
dark: "#b71c1c",
|
|
3876
|
+
light: "#2d1515",
|
|
3871
3877
|
main: "#d32f2f"
|
|
3872
3878
|
},
|
|
3873
3879
|
info: {
|
|
3874
3880
|
contrastText: "#43aeda",
|
|
3875
3881
|
dark: "#01579b",
|
|
3882
|
+
light: "#0f1f35",
|
|
3876
3883
|
main: "#bbebff"
|
|
3877
3884
|
},
|
|
3878
3885
|
primary: {
|
|
@@ -3883,11 +3890,13 @@ var darkTheme = {
|
|
|
3883
3890
|
secondary: {
|
|
3884
3891
|
contrastText: "#ffffff",
|
|
3885
3892
|
dark: "#212121",
|
|
3893
|
+
light: "#2a2a2a",
|
|
3886
3894
|
main: "#8b8b8b"
|
|
3887
3895
|
},
|
|
3888
3896
|
success: {
|
|
3889
3897
|
contrastText: "#00a807",
|
|
3890
3898
|
dark: "#388e3c",
|
|
3899
|
+
light: "#132d1a",
|
|
3891
3900
|
main: "#4caf50"
|
|
3892
3901
|
},
|
|
3893
3902
|
text: {
|
|
@@ -3898,6 +3907,7 @@ var darkTheme = {
|
|
|
3898
3907
|
warning: {
|
|
3899
3908
|
contrastText: "#be7100",
|
|
3900
3909
|
dark: "#f57c00",
|
|
3910
|
+
light: "#2d2310",
|
|
3901
3911
|
main: "#ff9800"
|
|
3902
3912
|
}
|
|
3903
3913
|
},
|
|
@@ -3992,6 +4002,9 @@ var toCssVariables = (theme) => {
|
|
|
3992
4002
|
if (theme.colors?.secondary?.contrastText) {
|
|
3993
4003
|
cssVars[`--${prefix}-color-secondary-contrastText`] = theme.colors.secondary.contrastText;
|
|
3994
4004
|
}
|
|
4005
|
+
if (theme.colors?.secondary?.light) {
|
|
4006
|
+
cssVars[`--${prefix}-color-secondary-light`] = theme.colors.secondary.light;
|
|
4007
|
+
}
|
|
3995
4008
|
if (theme.colors?.background?.surface) {
|
|
3996
4009
|
cssVars[`--${prefix}-color-background-surface`] = theme.colors.background.surface;
|
|
3997
4010
|
}
|
|
@@ -4007,24 +4020,36 @@ var toCssVariables = (theme) => {
|
|
|
4007
4020
|
if (theme.colors?.error?.contrastText) {
|
|
4008
4021
|
cssVars[`--${prefix}-color-error-contrastText`] = theme.colors.error.contrastText;
|
|
4009
4022
|
}
|
|
4023
|
+
if (theme.colors?.error?.light) {
|
|
4024
|
+
cssVars[`--${prefix}-color-error-light`] = theme.colors.error.light;
|
|
4025
|
+
}
|
|
4010
4026
|
if (theme.colors?.success?.main) {
|
|
4011
4027
|
cssVars[`--${prefix}-color-success-main`] = theme.colors.success.main;
|
|
4012
4028
|
}
|
|
4013
4029
|
if (theme.colors?.success?.contrastText) {
|
|
4014
4030
|
cssVars[`--${prefix}-color-success-contrastText`] = theme.colors.success.contrastText;
|
|
4015
4031
|
}
|
|
4032
|
+
if (theme.colors?.success?.light) {
|
|
4033
|
+
cssVars[`--${prefix}-color-success-light`] = theme.colors.success.light;
|
|
4034
|
+
}
|
|
4016
4035
|
if (theme.colors?.warning?.main) {
|
|
4017
4036
|
cssVars[`--${prefix}-color-warning-main`] = theme.colors.warning.main;
|
|
4018
4037
|
}
|
|
4019
4038
|
if (theme.colors?.warning?.contrastText) {
|
|
4020
4039
|
cssVars[`--${prefix}-color-warning-contrastText`] = theme.colors.warning.contrastText;
|
|
4021
4040
|
}
|
|
4041
|
+
if (theme.colors?.warning?.light) {
|
|
4042
|
+
cssVars[`--${prefix}-color-warning-light`] = theme.colors.warning.light;
|
|
4043
|
+
}
|
|
4022
4044
|
if (theme.colors?.info?.main) {
|
|
4023
4045
|
cssVars[`--${prefix}-color-info-main`] = theme.colors.info.main;
|
|
4024
4046
|
}
|
|
4025
4047
|
if (theme.colors?.info?.contrastText) {
|
|
4026
4048
|
cssVars[`--${prefix}-color-info-contrastText`] = theme.colors.info.contrastText;
|
|
4027
4049
|
}
|
|
4050
|
+
if (theme.colors?.info?.light) {
|
|
4051
|
+
cssVars[`--${prefix}-color-info-light`] = theme.colors.info.light;
|
|
4052
|
+
}
|
|
4028
4053
|
if (theme.colors?.text?.primary) {
|
|
4029
4054
|
cssVars[`--${prefix}-color-text-primary`] = theme.colors.text.primary;
|
|
4030
4055
|
}
|