authhero 0.180.1 → 0.182.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/authhero.cjs +48 -48
- package/dist/authhero.d.ts +203 -128
- package/dist/authhero.mjs +5590 -5436
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -12459,12 +12459,16 @@ export declare const bordersSchema: z.ZodObject<{
|
|
|
12459
12459
|
button_border_radius: z.ZodNumber;
|
|
12460
12460
|
button_border_weight: z.ZodNumber;
|
|
12461
12461
|
buttons_style: z.ZodEnum<[
|
|
12462
|
-
"pill"
|
|
12462
|
+
"pill",
|
|
12463
|
+
"rounded",
|
|
12464
|
+
"sharp"
|
|
12463
12465
|
]>;
|
|
12464
12466
|
input_border_radius: z.ZodNumber;
|
|
12465
12467
|
input_border_weight: z.ZodNumber;
|
|
12466
12468
|
inputs_style: z.ZodEnum<[
|
|
12467
|
-
"pill"
|
|
12469
|
+
"pill",
|
|
12470
|
+
"rounded",
|
|
12471
|
+
"sharp"
|
|
12468
12472
|
]>;
|
|
12469
12473
|
show_widget_shadow: z.ZodBoolean;
|
|
12470
12474
|
widget_border_weight: z.ZodNumber;
|
|
@@ -12472,20 +12476,20 @@ export declare const bordersSchema: z.ZodObject<{
|
|
|
12472
12476
|
}, "strip", z.ZodTypeAny, {
|
|
12473
12477
|
button_border_radius: number;
|
|
12474
12478
|
button_border_weight: number;
|
|
12475
|
-
buttons_style: "pill";
|
|
12479
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
12476
12480
|
input_border_radius: number;
|
|
12477
12481
|
input_border_weight: number;
|
|
12478
|
-
inputs_style: "pill";
|
|
12482
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
12479
12483
|
show_widget_shadow: boolean;
|
|
12480
12484
|
widget_border_weight: number;
|
|
12481
12485
|
widget_corner_radius: number;
|
|
12482
12486
|
}, {
|
|
12483
12487
|
button_border_radius: number;
|
|
12484
12488
|
button_border_weight: number;
|
|
12485
|
-
buttons_style: "pill";
|
|
12489
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
12486
12490
|
input_border_radius: number;
|
|
12487
12491
|
input_border_weight: number;
|
|
12488
|
-
inputs_style: "pill";
|
|
12492
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
12489
12493
|
show_widget_shadow: boolean;
|
|
12490
12494
|
widget_border_weight: number;
|
|
12491
12495
|
widget_corner_radius: number;
|
|
@@ -12495,7 +12499,9 @@ export declare const colorsSchema: z.ZodObject<{
|
|
|
12495
12499
|
base_hover_color: z.ZodString;
|
|
12496
12500
|
body_text: z.ZodString;
|
|
12497
12501
|
captcha_widget_theme: z.ZodEnum<[
|
|
12498
|
-
"auto"
|
|
12502
|
+
"auto",
|
|
12503
|
+
"dark",
|
|
12504
|
+
"light"
|
|
12499
12505
|
]>;
|
|
12500
12506
|
error: z.ZodString;
|
|
12501
12507
|
header: z.ZodString;
|
|
@@ -12516,7 +12522,7 @@ export declare const colorsSchema: z.ZodObject<{
|
|
|
12516
12522
|
base_focus_color: string;
|
|
12517
12523
|
base_hover_color: string;
|
|
12518
12524
|
body_text: string;
|
|
12519
|
-
captcha_widget_theme: "auto";
|
|
12525
|
+
captcha_widget_theme: "auto" | "dark" | "light";
|
|
12520
12526
|
error: string;
|
|
12521
12527
|
header: string;
|
|
12522
12528
|
icons: string;
|
|
@@ -12536,7 +12542,7 @@ export declare const colorsSchema: z.ZodObject<{
|
|
|
12536
12542
|
base_focus_color: string;
|
|
12537
12543
|
base_hover_color: string;
|
|
12538
12544
|
body_text: string;
|
|
12539
|
-
captcha_widget_theme: "auto";
|
|
12545
|
+
captcha_widget_theme: "auto" | "dark" | "light";
|
|
12540
12546
|
error: string;
|
|
12541
12547
|
header: string;
|
|
12542
12548
|
icons: string;
|
|
@@ -12606,7 +12612,8 @@ export declare const fontsSchema: z.ZodObject<{
|
|
|
12606
12612
|
size: number;
|
|
12607
12613
|
}>;
|
|
12608
12614
|
links_style: z.ZodEnum<[
|
|
12609
|
-
"normal"
|
|
12615
|
+
"normal",
|
|
12616
|
+
"underlined"
|
|
12610
12617
|
]>;
|
|
12611
12618
|
reference_text_size: z.ZodNumber;
|
|
12612
12619
|
subtitle: z.ZodObject<{
|
|
@@ -12651,7 +12658,7 @@ export declare const fontsSchema: z.ZodObject<{
|
|
|
12651
12658
|
bold: boolean;
|
|
12652
12659
|
size: number;
|
|
12653
12660
|
};
|
|
12654
|
-
links_style: "normal";
|
|
12661
|
+
links_style: "normal" | "underlined";
|
|
12655
12662
|
reference_text_size: number;
|
|
12656
12663
|
subtitle: {
|
|
12657
12664
|
bold: boolean;
|
|
@@ -12679,7 +12686,7 @@ export declare const fontsSchema: z.ZodObject<{
|
|
|
12679
12686
|
bold: boolean;
|
|
12680
12687
|
size: number;
|
|
12681
12688
|
};
|
|
12682
|
-
links_style: "normal";
|
|
12689
|
+
links_style: "normal" | "underlined";
|
|
12683
12690
|
reference_text_size: number;
|
|
12684
12691
|
subtitle: {
|
|
12685
12692
|
bold: boolean;
|
|
@@ -12690,53 +12697,65 @@ export declare const pageBackgroundSchema: z.ZodObject<{
|
|
|
12690
12697
|
background_color: z.ZodString;
|
|
12691
12698
|
background_image_url: z.ZodString;
|
|
12692
12699
|
page_layout: z.ZodEnum<[
|
|
12693
|
-
"center"
|
|
12700
|
+
"center",
|
|
12701
|
+
"left",
|
|
12702
|
+
"right"
|
|
12694
12703
|
]>;
|
|
12695
12704
|
}, "strip", z.ZodTypeAny, {
|
|
12696
12705
|
background_color: string;
|
|
12697
12706
|
background_image_url: string;
|
|
12698
|
-
page_layout: "center";
|
|
12707
|
+
page_layout: "center" | "left" | "right";
|
|
12699
12708
|
}, {
|
|
12700
12709
|
background_color: string;
|
|
12701
12710
|
background_image_url: string;
|
|
12702
|
-
page_layout: "center";
|
|
12711
|
+
page_layout: "center" | "left" | "right";
|
|
12703
12712
|
}>;
|
|
12704
12713
|
export declare const widgetSchema: z.ZodObject<{
|
|
12705
12714
|
header_text_alignment: z.ZodEnum<[
|
|
12706
|
-
"center"
|
|
12715
|
+
"center",
|
|
12716
|
+
"left",
|
|
12717
|
+
"right"
|
|
12707
12718
|
]>;
|
|
12708
12719
|
logo_height: z.ZodNumber;
|
|
12709
12720
|
logo_position: z.ZodEnum<[
|
|
12710
|
-
"center"
|
|
12721
|
+
"center",
|
|
12722
|
+
"left",
|
|
12723
|
+
"none",
|
|
12724
|
+
"right"
|
|
12711
12725
|
]>;
|
|
12712
12726
|
logo_url: z.ZodString;
|
|
12713
12727
|
social_buttons_layout: z.ZodEnum<[
|
|
12714
|
-
"bottom"
|
|
12728
|
+
"bottom",
|
|
12729
|
+
"top"
|
|
12715
12730
|
]>;
|
|
12716
12731
|
}, "strip", z.ZodTypeAny, {
|
|
12717
12732
|
logo_url: string;
|
|
12718
|
-
header_text_alignment: "center";
|
|
12733
|
+
header_text_alignment: "center" | "left" | "right";
|
|
12719
12734
|
logo_height: number;
|
|
12720
|
-
logo_position: "center";
|
|
12721
|
-
social_buttons_layout: "bottom";
|
|
12735
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12736
|
+
social_buttons_layout: "bottom" | "top";
|
|
12722
12737
|
}, {
|
|
12723
12738
|
logo_url: string;
|
|
12724
|
-
header_text_alignment: "center";
|
|
12739
|
+
header_text_alignment: "center" | "left" | "right";
|
|
12725
12740
|
logo_height: number;
|
|
12726
|
-
logo_position: "center";
|
|
12727
|
-
social_buttons_layout: "bottom";
|
|
12741
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12742
|
+
social_buttons_layout: "bottom" | "top";
|
|
12728
12743
|
}>;
|
|
12729
12744
|
export declare const themeInsertSchema: z.ZodObject<{
|
|
12730
12745
|
borders: z.ZodObject<{
|
|
12731
12746
|
button_border_radius: z.ZodNumber;
|
|
12732
12747
|
button_border_weight: z.ZodNumber;
|
|
12733
12748
|
buttons_style: z.ZodEnum<[
|
|
12734
|
-
"pill"
|
|
12749
|
+
"pill",
|
|
12750
|
+
"rounded",
|
|
12751
|
+
"sharp"
|
|
12735
12752
|
]>;
|
|
12736
12753
|
input_border_radius: z.ZodNumber;
|
|
12737
12754
|
input_border_weight: z.ZodNumber;
|
|
12738
12755
|
inputs_style: z.ZodEnum<[
|
|
12739
|
-
"pill"
|
|
12756
|
+
"pill",
|
|
12757
|
+
"rounded",
|
|
12758
|
+
"sharp"
|
|
12740
12759
|
]>;
|
|
12741
12760
|
show_widget_shadow: z.ZodBoolean;
|
|
12742
12761
|
widget_border_weight: z.ZodNumber;
|
|
@@ -12744,20 +12763,20 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
12744
12763
|
}, "strip", z.ZodTypeAny, {
|
|
12745
12764
|
button_border_radius: number;
|
|
12746
12765
|
button_border_weight: number;
|
|
12747
|
-
buttons_style: "pill";
|
|
12766
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
12748
12767
|
input_border_radius: number;
|
|
12749
12768
|
input_border_weight: number;
|
|
12750
|
-
inputs_style: "pill";
|
|
12769
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
12751
12770
|
show_widget_shadow: boolean;
|
|
12752
12771
|
widget_border_weight: number;
|
|
12753
12772
|
widget_corner_radius: number;
|
|
12754
12773
|
}, {
|
|
12755
12774
|
button_border_radius: number;
|
|
12756
12775
|
button_border_weight: number;
|
|
12757
|
-
buttons_style: "pill";
|
|
12776
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
12758
12777
|
input_border_radius: number;
|
|
12759
12778
|
input_border_weight: number;
|
|
12760
|
-
inputs_style: "pill";
|
|
12779
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
12761
12780
|
show_widget_shadow: boolean;
|
|
12762
12781
|
widget_border_weight: number;
|
|
12763
12782
|
widget_corner_radius: number;
|
|
@@ -12767,7 +12786,9 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
12767
12786
|
base_hover_color: z.ZodString;
|
|
12768
12787
|
body_text: z.ZodString;
|
|
12769
12788
|
captcha_widget_theme: z.ZodEnum<[
|
|
12770
|
-
"auto"
|
|
12789
|
+
"auto",
|
|
12790
|
+
"dark",
|
|
12791
|
+
"light"
|
|
12771
12792
|
]>;
|
|
12772
12793
|
error: z.ZodString;
|
|
12773
12794
|
header: z.ZodString;
|
|
@@ -12788,7 +12809,7 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
12788
12809
|
base_focus_color: string;
|
|
12789
12810
|
base_hover_color: string;
|
|
12790
12811
|
body_text: string;
|
|
12791
|
-
captcha_widget_theme: "auto";
|
|
12812
|
+
captcha_widget_theme: "auto" | "dark" | "light";
|
|
12792
12813
|
error: string;
|
|
12793
12814
|
header: string;
|
|
12794
12815
|
icons: string;
|
|
@@ -12808,7 +12829,7 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
12808
12829
|
base_focus_color: string;
|
|
12809
12830
|
base_hover_color: string;
|
|
12810
12831
|
body_text: string;
|
|
12811
|
-
captcha_widget_theme: "auto";
|
|
12832
|
+
captcha_widget_theme: "auto" | "dark" | "light";
|
|
12812
12833
|
error: string;
|
|
12813
12834
|
header: string;
|
|
12814
12835
|
icons: string;
|
|
@@ -12869,7 +12890,8 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
12869
12890
|
size: number;
|
|
12870
12891
|
}>;
|
|
12871
12892
|
links_style: z.ZodEnum<[
|
|
12872
|
-
"normal"
|
|
12893
|
+
"normal",
|
|
12894
|
+
"underlined"
|
|
12873
12895
|
]>;
|
|
12874
12896
|
reference_text_size: z.ZodNumber;
|
|
12875
12897
|
subtitle: z.ZodObject<{
|
|
@@ -12914,7 +12936,7 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
12914
12936
|
bold: boolean;
|
|
12915
12937
|
size: number;
|
|
12916
12938
|
};
|
|
12917
|
-
links_style: "normal";
|
|
12939
|
+
links_style: "normal" | "underlined";
|
|
12918
12940
|
reference_text_size: number;
|
|
12919
12941
|
subtitle: {
|
|
12920
12942
|
bold: boolean;
|
|
@@ -12942,7 +12964,7 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
12942
12964
|
bold: boolean;
|
|
12943
12965
|
size: number;
|
|
12944
12966
|
};
|
|
12945
|
-
links_style: "normal";
|
|
12967
|
+
links_style: "normal" | "underlined";
|
|
12946
12968
|
reference_text_size: number;
|
|
12947
12969
|
subtitle: {
|
|
12948
12970
|
bold: boolean;
|
|
@@ -12953,53 +12975,61 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
12953
12975
|
background_color: z.ZodString;
|
|
12954
12976
|
background_image_url: z.ZodString;
|
|
12955
12977
|
page_layout: z.ZodEnum<[
|
|
12956
|
-
"center"
|
|
12978
|
+
"center",
|
|
12979
|
+
"left",
|
|
12980
|
+
"right"
|
|
12957
12981
|
]>;
|
|
12958
12982
|
}, "strip", z.ZodTypeAny, {
|
|
12959
12983
|
background_color: string;
|
|
12960
12984
|
background_image_url: string;
|
|
12961
|
-
page_layout: "center";
|
|
12985
|
+
page_layout: "center" | "left" | "right";
|
|
12962
12986
|
}, {
|
|
12963
12987
|
background_color: string;
|
|
12964
12988
|
background_image_url: string;
|
|
12965
|
-
page_layout: "center";
|
|
12989
|
+
page_layout: "center" | "left" | "right";
|
|
12966
12990
|
}>;
|
|
12967
12991
|
widget: z.ZodObject<{
|
|
12968
12992
|
header_text_alignment: z.ZodEnum<[
|
|
12969
|
-
"center"
|
|
12993
|
+
"center",
|
|
12994
|
+
"left",
|
|
12995
|
+
"right"
|
|
12970
12996
|
]>;
|
|
12971
12997
|
logo_height: z.ZodNumber;
|
|
12972
12998
|
logo_position: z.ZodEnum<[
|
|
12973
|
-
"center"
|
|
12999
|
+
"center",
|
|
13000
|
+
"left",
|
|
13001
|
+
"none",
|
|
13002
|
+
"right"
|
|
12974
13003
|
]>;
|
|
12975
13004
|
logo_url: z.ZodString;
|
|
12976
13005
|
social_buttons_layout: z.ZodEnum<[
|
|
12977
|
-
"bottom"
|
|
13006
|
+
"bottom",
|
|
13007
|
+
"top"
|
|
12978
13008
|
]>;
|
|
12979
13009
|
}, "strip", z.ZodTypeAny, {
|
|
12980
13010
|
logo_url: string;
|
|
12981
|
-
header_text_alignment: "center";
|
|
13011
|
+
header_text_alignment: "center" | "left" | "right";
|
|
12982
13012
|
logo_height: number;
|
|
12983
|
-
logo_position: "center";
|
|
12984
|
-
social_buttons_layout: "bottom";
|
|
13013
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13014
|
+
social_buttons_layout: "bottom" | "top";
|
|
12985
13015
|
}, {
|
|
12986
13016
|
logo_url: string;
|
|
12987
|
-
header_text_alignment: "center";
|
|
13017
|
+
header_text_alignment: "center" | "left" | "right";
|
|
12988
13018
|
logo_height: number;
|
|
12989
|
-
logo_position: "center";
|
|
12990
|
-
social_buttons_layout: "bottom";
|
|
13019
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13020
|
+
social_buttons_layout: "bottom" | "top";
|
|
12991
13021
|
}>;
|
|
12992
13022
|
}, "strip", z.ZodTypeAny, {
|
|
12993
13023
|
page_background: {
|
|
12994
13024
|
background_color: string;
|
|
12995
13025
|
background_image_url: string;
|
|
12996
|
-
page_layout: "center";
|
|
13026
|
+
page_layout: "center" | "left" | "right";
|
|
12997
13027
|
};
|
|
12998
13028
|
colors: {
|
|
12999
13029
|
base_focus_color: string;
|
|
13000
13030
|
base_hover_color: string;
|
|
13001
13031
|
body_text: string;
|
|
13002
|
-
captcha_widget_theme: "auto";
|
|
13032
|
+
captcha_widget_theme: "auto" | "dark" | "light";
|
|
13003
13033
|
error: string;
|
|
13004
13034
|
header: string;
|
|
13005
13035
|
icons: string;
|
|
@@ -13019,10 +13049,10 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
13019
13049
|
borders: {
|
|
13020
13050
|
button_border_radius: number;
|
|
13021
13051
|
button_border_weight: number;
|
|
13022
|
-
buttons_style: "pill";
|
|
13052
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
13023
13053
|
input_border_radius: number;
|
|
13024
13054
|
input_border_weight: number;
|
|
13025
|
-
inputs_style: "pill";
|
|
13055
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
13026
13056
|
show_widget_shadow: boolean;
|
|
13027
13057
|
widget_border_weight: number;
|
|
13028
13058
|
widget_corner_radius: number;
|
|
@@ -13050,7 +13080,7 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
13050
13080
|
bold: boolean;
|
|
13051
13081
|
size: number;
|
|
13052
13082
|
};
|
|
13053
|
-
links_style: "normal";
|
|
13083
|
+
links_style: "normal" | "underlined";
|
|
13054
13084
|
reference_text_size: number;
|
|
13055
13085
|
subtitle: {
|
|
13056
13086
|
bold: boolean;
|
|
@@ -13059,22 +13089,22 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
13059
13089
|
};
|
|
13060
13090
|
widget: {
|
|
13061
13091
|
logo_url: string;
|
|
13062
|
-
header_text_alignment: "center";
|
|
13092
|
+
header_text_alignment: "center" | "left" | "right";
|
|
13063
13093
|
logo_height: number;
|
|
13064
|
-
logo_position: "center";
|
|
13065
|
-
social_buttons_layout: "bottom";
|
|
13094
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13095
|
+
social_buttons_layout: "bottom" | "top";
|
|
13066
13096
|
};
|
|
13067
13097
|
}, {
|
|
13068
13098
|
page_background: {
|
|
13069
13099
|
background_color: string;
|
|
13070
13100
|
background_image_url: string;
|
|
13071
|
-
page_layout: "center";
|
|
13101
|
+
page_layout: "center" | "left" | "right";
|
|
13072
13102
|
};
|
|
13073
13103
|
colors: {
|
|
13074
13104
|
base_focus_color: string;
|
|
13075
13105
|
base_hover_color: string;
|
|
13076
13106
|
body_text: string;
|
|
13077
|
-
captcha_widget_theme: "auto";
|
|
13107
|
+
captcha_widget_theme: "auto" | "dark" | "light";
|
|
13078
13108
|
error: string;
|
|
13079
13109
|
header: string;
|
|
13080
13110
|
icons: string;
|
|
@@ -13094,10 +13124,10 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
13094
13124
|
borders: {
|
|
13095
13125
|
button_border_radius: number;
|
|
13096
13126
|
button_border_weight: number;
|
|
13097
|
-
buttons_style: "pill";
|
|
13127
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
13098
13128
|
input_border_radius: number;
|
|
13099
13129
|
input_border_weight: number;
|
|
13100
|
-
inputs_style: "pill";
|
|
13130
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
13101
13131
|
show_widget_shadow: boolean;
|
|
13102
13132
|
widget_border_weight: number;
|
|
13103
13133
|
widget_corner_radius: number;
|
|
@@ -13125,7 +13155,7 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
13125
13155
|
bold: boolean;
|
|
13126
13156
|
size: number;
|
|
13127
13157
|
};
|
|
13128
|
-
links_style: "normal";
|
|
13158
|
+
links_style: "normal" | "underlined";
|
|
13129
13159
|
reference_text_size: number;
|
|
13130
13160
|
subtitle: {
|
|
13131
13161
|
bold: boolean;
|
|
@@ -13134,10 +13164,10 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
13134
13164
|
};
|
|
13135
13165
|
widget: {
|
|
13136
13166
|
logo_url: string;
|
|
13137
|
-
header_text_alignment: "center";
|
|
13167
|
+
header_text_alignment: "center" | "left" | "right";
|
|
13138
13168
|
logo_height: number;
|
|
13139
|
-
logo_position: "center";
|
|
13140
|
-
social_buttons_layout: "bottom";
|
|
13169
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13170
|
+
social_buttons_layout: "bottom" | "top";
|
|
13141
13171
|
};
|
|
13142
13172
|
}>;
|
|
13143
13173
|
export type ThemeInsert = z.input<typeof themeInsertSchema>;
|
|
@@ -13146,12 +13176,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13146
13176
|
button_border_radius: z.ZodNumber;
|
|
13147
13177
|
button_border_weight: z.ZodNumber;
|
|
13148
13178
|
buttons_style: z.ZodEnum<[
|
|
13149
|
-
"pill"
|
|
13179
|
+
"pill",
|
|
13180
|
+
"rounded",
|
|
13181
|
+
"sharp"
|
|
13150
13182
|
]>;
|
|
13151
13183
|
input_border_radius: z.ZodNumber;
|
|
13152
13184
|
input_border_weight: z.ZodNumber;
|
|
13153
13185
|
inputs_style: z.ZodEnum<[
|
|
13154
|
-
"pill"
|
|
13186
|
+
"pill",
|
|
13187
|
+
"rounded",
|
|
13188
|
+
"sharp"
|
|
13155
13189
|
]>;
|
|
13156
13190
|
show_widget_shadow: z.ZodBoolean;
|
|
13157
13191
|
widget_border_weight: z.ZodNumber;
|
|
@@ -13159,20 +13193,20 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13159
13193
|
}, "strip", z.ZodTypeAny, {
|
|
13160
13194
|
button_border_radius: number;
|
|
13161
13195
|
button_border_weight: number;
|
|
13162
|
-
buttons_style: "pill";
|
|
13196
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
13163
13197
|
input_border_radius: number;
|
|
13164
13198
|
input_border_weight: number;
|
|
13165
|
-
inputs_style: "pill";
|
|
13199
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
13166
13200
|
show_widget_shadow: boolean;
|
|
13167
13201
|
widget_border_weight: number;
|
|
13168
13202
|
widget_corner_radius: number;
|
|
13169
13203
|
}, {
|
|
13170
13204
|
button_border_radius: number;
|
|
13171
13205
|
button_border_weight: number;
|
|
13172
|
-
buttons_style: "pill";
|
|
13206
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
13173
13207
|
input_border_radius: number;
|
|
13174
13208
|
input_border_weight: number;
|
|
13175
|
-
inputs_style: "pill";
|
|
13209
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
13176
13210
|
show_widget_shadow: boolean;
|
|
13177
13211
|
widget_border_weight: number;
|
|
13178
13212
|
widget_corner_radius: number;
|
|
@@ -13182,7 +13216,9 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13182
13216
|
base_hover_color: z.ZodString;
|
|
13183
13217
|
body_text: z.ZodString;
|
|
13184
13218
|
captcha_widget_theme: z.ZodEnum<[
|
|
13185
|
-
"auto"
|
|
13219
|
+
"auto",
|
|
13220
|
+
"dark",
|
|
13221
|
+
"light"
|
|
13186
13222
|
]>;
|
|
13187
13223
|
error: z.ZodString;
|
|
13188
13224
|
header: z.ZodString;
|
|
@@ -13203,7 +13239,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13203
13239
|
base_focus_color: string;
|
|
13204
13240
|
base_hover_color: string;
|
|
13205
13241
|
body_text: string;
|
|
13206
|
-
captcha_widget_theme: "auto";
|
|
13242
|
+
captcha_widget_theme: "auto" | "dark" | "light";
|
|
13207
13243
|
error: string;
|
|
13208
13244
|
header: string;
|
|
13209
13245
|
icons: string;
|
|
@@ -13223,7 +13259,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13223
13259
|
base_focus_color: string;
|
|
13224
13260
|
base_hover_color: string;
|
|
13225
13261
|
body_text: string;
|
|
13226
|
-
captcha_widget_theme: "auto";
|
|
13262
|
+
captcha_widget_theme: "auto" | "dark" | "light";
|
|
13227
13263
|
error: string;
|
|
13228
13264
|
header: string;
|
|
13229
13265
|
icons: string;
|
|
@@ -13284,7 +13320,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13284
13320
|
size: number;
|
|
13285
13321
|
}>;
|
|
13286
13322
|
links_style: z.ZodEnum<[
|
|
13287
|
-
"normal"
|
|
13323
|
+
"normal",
|
|
13324
|
+
"underlined"
|
|
13288
13325
|
]>;
|
|
13289
13326
|
reference_text_size: z.ZodNumber;
|
|
13290
13327
|
subtitle: z.ZodObject<{
|
|
@@ -13329,7 +13366,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13329
13366
|
bold: boolean;
|
|
13330
13367
|
size: number;
|
|
13331
13368
|
};
|
|
13332
|
-
links_style: "normal";
|
|
13369
|
+
links_style: "normal" | "underlined";
|
|
13333
13370
|
reference_text_size: number;
|
|
13334
13371
|
subtitle: {
|
|
13335
13372
|
bold: boolean;
|
|
@@ -13357,7 +13394,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13357
13394
|
bold: boolean;
|
|
13358
13395
|
size: number;
|
|
13359
13396
|
};
|
|
13360
|
-
links_style: "normal";
|
|
13397
|
+
links_style: "normal" | "underlined";
|
|
13361
13398
|
reference_text_size: number;
|
|
13362
13399
|
subtitle: {
|
|
13363
13400
|
bold: boolean;
|
|
@@ -13368,41 +13405,49 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13368
13405
|
background_color: z.ZodString;
|
|
13369
13406
|
background_image_url: z.ZodString;
|
|
13370
13407
|
page_layout: z.ZodEnum<[
|
|
13371
|
-
"center"
|
|
13408
|
+
"center",
|
|
13409
|
+
"left",
|
|
13410
|
+
"right"
|
|
13372
13411
|
]>;
|
|
13373
13412
|
}, "strip", z.ZodTypeAny, {
|
|
13374
13413
|
background_color: string;
|
|
13375
13414
|
background_image_url: string;
|
|
13376
|
-
page_layout: "center";
|
|
13415
|
+
page_layout: "center" | "left" | "right";
|
|
13377
13416
|
}, {
|
|
13378
13417
|
background_color: string;
|
|
13379
13418
|
background_image_url: string;
|
|
13380
|
-
page_layout: "center";
|
|
13419
|
+
page_layout: "center" | "left" | "right";
|
|
13381
13420
|
}>;
|
|
13382
13421
|
widget: z.ZodObject<{
|
|
13383
13422
|
header_text_alignment: z.ZodEnum<[
|
|
13384
|
-
"center"
|
|
13423
|
+
"center",
|
|
13424
|
+
"left",
|
|
13425
|
+
"right"
|
|
13385
13426
|
]>;
|
|
13386
13427
|
logo_height: z.ZodNumber;
|
|
13387
13428
|
logo_position: z.ZodEnum<[
|
|
13388
|
-
"center"
|
|
13429
|
+
"center",
|
|
13430
|
+
"left",
|
|
13431
|
+
"none",
|
|
13432
|
+
"right"
|
|
13389
13433
|
]>;
|
|
13390
13434
|
logo_url: z.ZodString;
|
|
13391
13435
|
social_buttons_layout: z.ZodEnum<[
|
|
13392
|
-
"bottom"
|
|
13436
|
+
"bottom",
|
|
13437
|
+
"top"
|
|
13393
13438
|
]>;
|
|
13394
13439
|
}, "strip", z.ZodTypeAny, {
|
|
13395
13440
|
logo_url: string;
|
|
13396
|
-
header_text_alignment: "center";
|
|
13441
|
+
header_text_alignment: "center" | "left" | "right";
|
|
13397
13442
|
logo_height: number;
|
|
13398
|
-
logo_position: "center";
|
|
13399
|
-
social_buttons_layout: "bottom";
|
|
13443
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13444
|
+
social_buttons_layout: "bottom" | "top";
|
|
13400
13445
|
}, {
|
|
13401
13446
|
logo_url: string;
|
|
13402
|
-
header_text_alignment: "center";
|
|
13447
|
+
header_text_alignment: "center" | "left" | "right";
|
|
13403
13448
|
logo_height: number;
|
|
13404
|
-
logo_position: "center";
|
|
13405
|
-
social_buttons_layout: "bottom";
|
|
13449
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13450
|
+
social_buttons_layout: "bottom" | "top";
|
|
13406
13451
|
}>;
|
|
13407
13452
|
} & {
|
|
13408
13453
|
themeId: z.ZodString;
|
|
@@ -13410,13 +13455,13 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13410
13455
|
page_background: {
|
|
13411
13456
|
background_color: string;
|
|
13412
13457
|
background_image_url: string;
|
|
13413
|
-
page_layout: "center";
|
|
13458
|
+
page_layout: "center" | "left" | "right";
|
|
13414
13459
|
};
|
|
13415
13460
|
colors: {
|
|
13416
13461
|
base_focus_color: string;
|
|
13417
13462
|
base_hover_color: string;
|
|
13418
13463
|
body_text: string;
|
|
13419
|
-
captcha_widget_theme: "auto";
|
|
13464
|
+
captcha_widget_theme: "auto" | "dark" | "light";
|
|
13420
13465
|
error: string;
|
|
13421
13466
|
header: string;
|
|
13422
13467
|
icons: string;
|
|
@@ -13436,10 +13481,10 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13436
13481
|
borders: {
|
|
13437
13482
|
button_border_radius: number;
|
|
13438
13483
|
button_border_weight: number;
|
|
13439
|
-
buttons_style: "pill";
|
|
13484
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
13440
13485
|
input_border_radius: number;
|
|
13441
13486
|
input_border_weight: number;
|
|
13442
|
-
inputs_style: "pill";
|
|
13487
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
13443
13488
|
show_widget_shadow: boolean;
|
|
13444
13489
|
widget_border_weight: number;
|
|
13445
13490
|
widget_corner_radius: number;
|
|
@@ -13467,7 +13512,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13467
13512
|
bold: boolean;
|
|
13468
13513
|
size: number;
|
|
13469
13514
|
};
|
|
13470
|
-
links_style: "normal";
|
|
13515
|
+
links_style: "normal" | "underlined";
|
|
13471
13516
|
reference_text_size: number;
|
|
13472
13517
|
subtitle: {
|
|
13473
13518
|
bold: boolean;
|
|
@@ -13476,23 +13521,23 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13476
13521
|
};
|
|
13477
13522
|
widget: {
|
|
13478
13523
|
logo_url: string;
|
|
13479
|
-
header_text_alignment: "center";
|
|
13524
|
+
header_text_alignment: "center" | "left" | "right";
|
|
13480
13525
|
logo_height: number;
|
|
13481
|
-
logo_position: "center";
|
|
13482
|
-
social_buttons_layout: "bottom";
|
|
13526
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13527
|
+
social_buttons_layout: "bottom" | "top";
|
|
13483
13528
|
};
|
|
13484
13529
|
themeId: string;
|
|
13485
13530
|
}, {
|
|
13486
13531
|
page_background: {
|
|
13487
13532
|
background_color: string;
|
|
13488
13533
|
background_image_url: string;
|
|
13489
|
-
page_layout: "center";
|
|
13534
|
+
page_layout: "center" | "left" | "right";
|
|
13490
13535
|
};
|
|
13491
13536
|
colors: {
|
|
13492
13537
|
base_focus_color: string;
|
|
13493
13538
|
base_hover_color: string;
|
|
13494
13539
|
body_text: string;
|
|
13495
|
-
captcha_widget_theme: "auto";
|
|
13540
|
+
captcha_widget_theme: "auto" | "dark" | "light";
|
|
13496
13541
|
error: string;
|
|
13497
13542
|
header: string;
|
|
13498
13543
|
icons: string;
|
|
@@ -13512,10 +13557,10 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13512
13557
|
borders: {
|
|
13513
13558
|
button_border_radius: number;
|
|
13514
13559
|
button_border_weight: number;
|
|
13515
|
-
buttons_style: "pill";
|
|
13560
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
13516
13561
|
input_border_radius: number;
|
|
13517
13562
|
input_border_weight: number;
|
|
13518
|
-
inputs_style: "pill";
|
|
13563
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
13519
13564
|
show_widget_shadow: boolean;
|
|
13520
13565
|
widget_border_weight: number;
|
|
13521
13566
|
widget_corner_radius: number;
|
|
@@ -13543,7 +13588,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13543
13588
|
bold: boolean;
|
|
13544
13589
|
size: number;
|
|
13545
13590
|
};
|
|
13546
|
-
links_style: "normal";
|
|
13591
|
+
links_style: "normal" | "underlined";
|
|
13547
13592
|
reference_text_size: number;
|
|
13548
13593
|
subtitle: {
|
|
13549
13594
|
bold: boolean;
|
|
@@ -13552,10 +13597,10 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
13552
13597
|
};
|
|
13553
13598
|
widget: {
|
|
13554
13599
|
logo_url: string;
|
|
13555
|
-
header_text_alignment: "center";
|
|
13600
|
+
header_text_alignment: "center" | "left" | "right";
|
|
13556
13601
|
logo_height: number;
|
|
13557
|
-
logo_position: "center";
|
|
13558
|
-
social_buttons_layout: "bottom";
|
|
13602
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13603
|
+
social_buttons_layout: "bottom" | "top";
|
|
13559
13604
|
};
|
|
13560
13605
|
themeId: string;
|
|
13561
13606
|
}>;
|
|
@@ -14448,6 +14493,36 @@ export declare const VippsLogo: ({ ...props }: {
|
|
|
14448
14493
|
}) => import("hono/jsx/jsx-dev-runtime").JSX.Element;
|
|
14449
14494
|
export declare const tailwindCss = "\n@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:400;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Regular.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:500;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Medium.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:600;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Bold.woff2) format(\"woff2\")}@font-face{font-family:uicon;src:url(https://login2.sesamy.com/_next/static/media/uicon.0b00e08a.woff2)}[class*=\" uicon-\"],[class^=uicon-]{font-family:uicon!important;font-size:inherit;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.uicon-apple:before{content:\"\\ea01\"}.uicon-arrow-down:before{content:\"\\ea02\"}.uicon-arrow-left:before{content:\"\\ea03\"}.uicon-arrow-right:before{content:\"\\ea04\"}.uicon-arrow-up:before{content:\"\\ea05\"}.uicon-facebook:before{content:\"\\ea06\"}.uicon-google:before{content:\"\\ea07\"}.uicon-info-bubble:before{content:\"\\ea08\"}.uicon-info:before{content:\"\\ea09\"}.uicon-sesamy:before{content:\"\\ea0a\"}.uicon-spinner-circle:before{content:\"\\ea0b\"}.uicon-spinner-inner:before{content:\"\\ea0c\"}\n\n/*! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #bfbcd7;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:KHTeka,Helvetica Neue,HelveticaNeue,TeX Gyre Heros,TeXGyreHeros,FreeSans,Nimbus Sans L,Liberation Sans,Arimo,Helvetica,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#4b4a58;opacity:1}input::placeholder,textarea::placeholder{color:#4b4a58;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity));font-size:1rem;letter-spacing:.0125rem;line-height:120%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:1280px){body{font-size:1.125rem;line-height:120%}}:is(.dark body){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}button,input,optgroup,select,textarea{font-size:.875rem;letter-spacing:.0125rem;line-height:120%}@media (min-width:1280px){button,input,optgroup,select,textarea{font-size:1rem;line-height:120%}}h1{font-size:1.5rem;font-weight:500;line-height:120%}@media (min-width:1280px){h1{font-size:2rem;line-height:120%}}@media (min-width:640px){h1{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}@media (min-width:1280px){h1{font-size:3.5rem;letter-spacing:-.0625rem;line-height:100%}}h2{font-size:1.25rem;font-weight:500;line-height:120%}@media (min-width:1280px){h2{font-size:1.5rem;line-height:120%}}@media (min-width:640px){h2{font-size:2rem;letter-spacing:0;line-height:120%}}@media (min-width:1280px){h2{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}h3{font-size:1.125rem;font-weight:500;line-height:120%}@media (min-width:1280px){h3{font-size:1.25rem;line-height:120%}}@media (min-width:640px){h3{font-size:1.5rem;line-height:120%}}@media (min-width:1280px){h3{font-size:2rem;line-height:120%}}h4{font-size:1rem;font-weight:500;line-height:120%}@media (min-width:1280px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:640px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:1280px){h4{font-size:1.5rem;line-height:120%}}h5{font-size:.875rem;font-weight:500;line-height:120%}@media (min-width:1280px){h5{font-size:1rem;line-height:120%}}@media (min-width:640px){h5{font-size:1rem;line-height:120%}}@media (min-width:1280px){h5{font-size:1.125rem;line-height:120%}}h6{font-size:.75rem;font-weight:500;line-height:135%}@media (min-width:1280px){h6{font-size:.875rem;line-height:120%}}@media (min-width:640px){h6{font-size:.875rem;line-height:120%}}@media (min-width:1280px){h6{font-size:1rem;line-height:120%}}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1920px){.container{max-width:1920px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-0{left:0}.right-0{right:0}.top-0{top:0}.top-1\\/2{top:50%}.mx-auto{margin-left:auto;margin-right:auto}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-7{margin-bottom:1.75rem}.mb-8{margin-bottom:2rem}.mt-1{margin-top:.25rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.\\!hidden{display:none!important}.hidden{display:none}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.max-h-full{max-height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.w-10{width:2.5rem}.w-5{width:1.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-full{width:100%}.max-w-\\[1295px\\]{max-width:1295px}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden{overflow:hidden}.rounded-2xl{border-radius:1.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.625rem}.rounded-md{border-radius:.375rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity))}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.p-4{padding:1rem}.px-0{padding-left:0;padding-right:0}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.pt-2{padding-top:.5rem}.pt-2\\.5{padding-top:.625rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.indent-\\[5px\\]{text-indent:5px}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.\\!text-base{font-size:1rem!important;line-height:120%!important}.text-2xl{font-size:1.5rem;line-height:120%}.text-3xl{font-size:2rem;line-height:120%}.text-base{font-size:1rem;line-height:120%}.text-lg{font-size:1.125rem;line-height:120%}.text-sm{font-size:.875rem;line-height:120%}.text-xl{font-size:1.25rem;line-height:120%}.text-xs{font-size:.75rem;line-height:135%}.font-medium{font-weight:500}.font-semibold{font-weight:600}.capitalize{text-transform:capitalize}.leading-\\[0\\]{line-height:0}.leading-tight{line-height:1.25}.text-\\[\\#1196F5\\]{--tw-text-opacity:1;color:rgb(17 150 245/var(--tw-text-opacity))}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(8 8 14/var(--tw-text-opacity))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.placeholder-gray-400::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(75 74 88/var(--tw-placeholder-opacity))}.placeholder-gray-400::placeholder{--tw-placeholder-opacity:1;color:rgb(75 74 88/var(--tw-placeholder-opacity))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.row-up-left{align-content:flex-start;justify-content:flex-start}.row,.row-up-left{display:flex;flex-direction:row;flex-wrap:wrap}.row{align-content:center;align-items:center;justify-content:center}.column-left{align-items:flex-start}.column,.column-left{display:flex;flex-direction:column;justify-content:center}.column{align-items:center}@media (min-width:1280px){.text-5xl{font-size:5.125rem;letter-spacing:-.125rem;line-height:100%}.text-4xl{font-size:3.5rem}.text-3xl,.text-4xl{letter-spacing:-.0625rem;line-height:100%}.text-3xl{font-size:3rem}.text-2xl{font-size:2rem}.text-2xl,.text-xl{line-height:120%}.text-xl{font-size:1.5rem}.text-lg{font-size:1.25rem}.text-base,.text-lg{line-height:120%}.text-base{font-size:1.125rem}.text-sm{font-size:1rem}.text-sm,.text-xs{line-height:120%}.text-xs{font-size:.875rem}}:root{--primary-color:#7d68f4;--primary-hover:#7e69f4;--text-on-primary:#fff}svg{transform:translate3d(var(--tw-translate-x),var(--tw-translate-y),0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}*,:after,:before{text-underline-offset:4px}input[type=number],input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield!important}.btn.is-loading{cursor:not-allowed;opacity:.4;pointer-events:none}.btn .btn-spinner,.btn.is-loading .btn-label{opacity:0;visibility:hidden}.btn.is-loading .btn-spinner{opacity:1;visibility:visible}[class*=\" uicon-\"],[class^=uicon-]{letter-spacing:0;line-height:100%}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.hover\\:bg-black\\/5:hover{background-color:rgba(0,0,0,.05)}.hover\\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity))}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-1:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-primary:focus{--tw-ring-color:var(--primary-color)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}:is(.dark .dark\\:border-gray-400){--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-500){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-600){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity))}:is(.dark .dark\\:bg-black){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-600){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity))}:is(.dark .dark\\:text-\\[\\#201a41\\]){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity))}:is(.dark .dark\\:text-gray-300){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}:is(.dark .dark\\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .dark\\:hover\\:bg-black\\/90:hover){background-color:rgba(0,0,0,.9)}:is(.dark .dark\\:focus\\:ring-offset-gray-900:focus){--tw-ring-offset-color:#08080e}@media (min-width:640px){.sm\\:absolute{position:absolute}.sm\\:left-4{left:1rem}.sm\\:top-1\\/2{top:50%}.sm\\:mt-4{margin-top:1rem}.sm\\:inline{display:inline}.sm\\:h-6{height:1.5rem}.sm\\:min-h-\\[700px\\]{min-height:700px}.sm\\:w-6{width:1.5rem}.sm\\:w-\\[calc\\(100\\%-theme\\(space\\.16\\)-theme\\(space\\.16\\)\\)\\]{width:calc(100% - 8rem)}.sm\\:w-auto{width:auto}.sm\\:max-w-md{max-width:28rem}.sm\\:-translate-y-1\\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\\:flex-col{flex-direction:column}.sm\\:justify-normal{justify-content:normal}.sm\\:space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.sm\\:space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.sm\\:bg-fixed{background-attachment:fixed}.sm\\:bg-left-top{background-position:0 0}.sm\\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\\:px-14{padding-left:3.5rem;padding-right:3.5rem}.sm\\:py-14{padding-bottom:3.5rem;padding-top:3.5rem}.sm\\:py-4{padding-bottom:1rem;padding-top:1rem}.sm\\:pt-16{padding-top:4rem}.sm\\:text-2xl{font-size:1.5rem;line-height:120%}.sm\\:text-base{font-size:1rem;line-height:120%}}@media (min-width:1280px){.md\\:min-w-\\[448px\\]{min-width:448px}.md\\:text-3xl{font-size:2rem;line-height:120%}.md\\:text-base{font-size:1rem;line-height:120%}.md\\:text-sm{font-size:.875rem;line-height:120%}.md\\:text-xs{font-size:.75rem;line-height:135%}}@media (max-height:900px) and (min-width:640px){.short\\:static{position:static}.short\\:left-auto{left:auto}.short\\:top-auto{top:auto}.short\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.short\\:translate-y-0{--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.short\\:flex-row{flex-direction:row}.short\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.short\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.short\\:px-0{padding-left:0;padding-right:0}.short\\:py-3{padding-bottom:.75rem;padding-top:.75rem}.short\\:text-xl{font-size:1.25rem;line-height:120%}}.\\[\\&\\>\\*\\:last-child\\]\\:mb-0>:last-child{margin-bottom:0}.\\[\\&_h1\\]\\:mb-6 h1,.\\[\\&_h2\\]\\:mb-6 h2{margin-bottom:1.5rem}";
|
|
14450
14495
|
export declare function injectTailwindCSS(): void;
|
|
14496
|
+
export interface MainTenantAdapterConfig {
|
|
14497
|
+
mainTenantId?: string;
|
|
14498
|
+
mainClientId?: string;
|
|
14499
|
+
}
|
|
14500
|
+
/**
|
|
14501
|
+
* Helper function to wrap data adapters with main tenant fallback functionality.
|
|
14502
|
+
* This should be used when initializing the AuthHero application to enable
|
|
14503
|
+
* fallback to a main tenant for default configurations.
|
|
14504
|
+
*
|
|
14505
|
+
* @param baseAdapters - The base data adapters to wrap
|
|
14506
|
+
* @param config - Configuration for main tenant fallback
|
|
14507
|
+
* @returns Wrapped data adapters with main tenant fallback functionality
|
|
14508
|
+
*
|
|
14509
|
+
* @example
|
|
14510
|
+
* ```typescript
|
|
14511
|
+
* import { init, withMainTenantFallback } from "@authhero/authhero";
|
|
14512
|
+
* import createAdapters from "@authhero/kysely";
|
|
14513
|
+
*
|
|
14514
|
+
* const db = // ... your database connection
|
|
14515
|
+
* const baseAdapters = createAdapters(db);
|
|
14516
|
+
*
|
|
14517
|
+
* const adapters = withMainTenantFallback(baseAdapters, {
|
|
14518
|
+
* mainTenantId: "main",
|
|
14519
|
+
* mainClientId: "main-client"
|
|
14520
|
+
* });
|
|
14521
|
+
*
|
|
14522
|
+
* const app = init({ dataAdapter: adapters });
|
|
14523
|
+
* ```
|
|
14524
|
+
*/
|
|
14525
|
+
export declare function withMainTenantFallback(baseAdapters: DataAdapters, config: MainTenantAdapterConfig): DataAdapters;
|
|
14451
14526
|
export declare function init(config: AuthHeroConfig): {
|
|
14452
14527
|
app: OpenAPIHono<{
|
|
14453
14528
|
Bindings: Bindings;
|
|
@@ -17625,13 +17700,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17625
17700
|
page_background: {
|
|
17626
17701
|
background_color: string;
|
|
17627
17702
|
background_image_url: string;
|
|
17628
|
-
page_layout: "center";
|
|
17703
|
+
page_layout: "center" | "left" | "right";
|
|
17629
17704
|
};
|
|
17630
17705
|
colors: {
|
|
17631
17706
|
base_focus_color: string;
|
|
17632
17707
|
base_hover_color: string;
|
|
17633
17708
|
body_text: string;
|
|
17634
|
-
captcha_widget_theme: "auto";
|
|
17709
|
+
captcha_widget_theme: "auto" | "dark" | "light";
|
|
17635
17710
|
error: string;
|
|
17636
17711
|
header: string;
|
|
17637
17712
|
icons: string;
|
|
@@ -17651,10 +17726,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17651
17726
|
borders: {
|
|
17652
17727
|
button_border_radius: number;
|
|
17653
17728
|
button_border_weight: number;
|
|
17654
|
-
buttons_style: "pill";
|
|
17729
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
17655
17730
|
input_border_radius: number;
|
|
17656
17731
|
input_border_weight: number;
|
|
17657
|
-
inputs_style: "pill";
|
|
17732
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
17658
17733
|
show_widget_shadow: boolean;
|
|
17659
17734
|
widget_border_weight: number;
|
|
17660
17735
|
widget_corner_radius: number;
|
|
@@ -17682,7 +17757,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17682
17757
|
bold: boolean;
|
|
17683
17758
|
size: number;
|
|
17684
17759
|
};
|
|
17685
|
-
links_style: "normal";
|
|
17760
|
+
links_style: "normal" | "underlined";
|
|
17686
17761
|
reference_text_size: number;
|
|
17687
17762
|
subtitle: {
|
|
17688
17763
|
bold: boolean;
|
|
@@ -17691,10 +17766,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17691
17766
|
};
|
|
17692
17767
|
widget: {
|
|
17693
17768
|
logo_url: string;
|
|
17694
|
-
header_text_alignment: "center";
|
|
17769
|
+
header_text_alignment: "center" | "left" | "right";
|
|
17695
17770
|
logo_height: number;
|
|
17696
|
-
logo_position: "center";
|
|
17697
|
-
social_buttons_layout: "bottom";
|
|
17771
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
17772
|
+
social_buttons_layout: "bottom" | "top";
|
|
17698
17773
|
};
|
|
17699
17774
|
themeId: string;
|
|
17700
17775
|
};
|
|
@@ -17714,7 +17789,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17714
17789
|
page_background?: {
|
|
17715
17790
|
background_color?: string | undefined;
|
|
17716
17791
|
background_image_url?: string | undefined;
|
|
17717
|
-
page_layout?: "center" | undefined;
|
|
17792
|
+
page_layout?: "center" | "left" | "right" | undefined;
|
|
17718
17793
|
} | undefined;
|
|
17719
17794
|
colors?: {
|
|
17720
17795
|
header?: string | undefined;
|
|
@@ -17722,7 +17797,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17722
17797
|
base_focus_color?: string | undefined;
|
|
17723
17798
|
base_hover_color?: string | undefined;
|
|
17724
17799
|
body_text?: string | undefined;
|
|
17725
|
-
captcha_widget_theme?: "auto" | undefined;
|
|
17800
|
+
captcha_widget_theme?: "auto" | "dark" | "light" | undefined;
|
|
17726
17801
|
icons?: string | undefined;
|
|
17727
17802
|
input_background?: string | undefined;
|
|
17728
17803
|
input_border?: string | undefined;
|
|
@@ -17740,10 +17815,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17740
17815
|
borders?: {
|
|
17741
17816
|
button_border_radius?: number | undefined;
|
|
17742
17817
|
button_border_weight?: number | undefined;
|
|
17743
|
-
buttons_style?: "pill" | undefined;
|
|
17818
|
+
buttons_style?: "pill" | "rounded" | "sharp" | undefined;
|
|
17744
17819
|
input_border_radius?: number | undefined;
|
|
17745
17820
|
input_border_weight?: number | undefined;
|
|
17746
|
-
inputs_style?: "pill" | undefined;
|
|
17821
|
+
inputs_style?: "pill" | "rounded" | "sharp" | undefined;
|
|
17747
17822
|
show_widget_shadow?: boolean | undefined;
|
|
17748
17823
|
widget_border_weight?: number | undefined;
|
|
17749
17824
|
widget_corner_radius?: number | undefined;
|
|
@@ -17771,7 +17846,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17771
17846
|
bold?: boolean | undefined;
|
|
17772
17847
|
size?: number | undefined;
|
|
17773
17848
|
} | undefined;
|
|
17774
|
-
links_style?: "normal" | undefined;
|
|
17849
|
+
links_style?: "normal" | "underlined" | undefined;
|
|
17775
17850
|
reference_text_size?: number | undefined;
|
|
17776
17851
|
subtitle?: {
|
|
17777
17852
|
bold?: boolean | undefined;
|
|
@@ -17779,11 +17854,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17779
17854
|
} | undefined;
|
|
17780
17855
|
} | undefined;
|
|
17781
17856
|
widget?: {
|
|
17782
|
-
header_text_alignment?: "center" | undefined;
|
|
17857
|
+
header_text_alignment?: "center" | "left" | "right" | undefined;
|
|
17783
17858
|
logo_height?: number | undefined;
|
|
17784
|
-
logo_position?: "center" | undefined;
|
|
17859
|
+
logo_position?: "center" | "left" | "right" | "none" | undefined;
|
|
17785
17860
|
logo_url?: string | undefined;
|
|
17786
|
-
social_buttons_layout?: "bottom" | undefined;
|
|
17861
|
+
social_buttons_layout?: "bottom" | "top" | undefined;
|
|
17787
17862
|
} | undefined;
|
|
17788
17863
|
themeId?: string | undefined;
|
|
17789
17864
|
};
|
|
@@ -17792,13 +17867,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17792
17867
|
page_background: {
|
|
17793
17868
|
background_color: string;
|
|
17794
17869
|
background_image_url: string;
|
|
17795
|
-
page_layout: "center";
|
|
17870
|
+
page_layout: "center" | "left" | "right";
|
|
17796
17871
|
};
|
|
17797
17872
|
colors: {
|
|
17798
17873
|
base_focus_color: string;
|
|
17799
17874
|
base_hover_color: string;
|
|
17800
17875
|
body_text: string;
|
|
17801
|
-
captcha_widget_theme: "auto";
|
|
17876
|
+
captcha_widget_theme: "auto" | "dark" | "light";
|
|
17802
17877
|
error: string;
|
|
17803
17878
|
header: string;
|
|
17804
17879
|
icons: string;
|
|
@@ -17818,10 +17893,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17818
17893
|
borders: {
|
|
17819
17894
|
button_border_radius: number;
|
|
17820
17895
|
button_border_weight: number;
|
|
17821
|
-
buttons_style: "pill";
|
|
17896
|
+
buttons_style: "pill" | "rounded" | "sharp";
|
|
17822
17897
|
input_border_radius: number;
|
|
17823
17898
|
input_border_weight: number;
|
|
17824
|
-
inputs_style: "pill";
|
|
17899
|
+
inputs_style: "pill" | "rounded" | "sharp";
|
|
17825
17900
|
show_widget_shadow: boolean;
|
|
17826
17901
|
widget_border_weight: number;
|
|
17827
17902
|
widget_corner_radius: number;
|
|
@@ -17849,7 +17924,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17849
17924
|
bold: boolean;
|
|
17850
17925
|
size: number;
|
|
17851
17926
|
};
|
|
17852
|
-
links_style: "normal";
|
|
17927
|
+
links_style: "normal" | "underlined";
|
|
17853
17928
|
reference_text_size: number;
|
|
17854
17929
|
subtitle: {
|
|
17855
17930
|
bold: boolean;
|
|
@@ -17858,10 +17933,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17858
17933
|
};
|
|
17859
17934
|
widget: {
|
|
17860
17935
|
logo_url: string;
|
|
17861
|
-
header_text_alignment: "center";
|
|
17936
|
+
header_text_alignment: "center" | "left" | "right";
|
|
17862
17937
|
logo_height: number;
|
|
17863
|
-
logo_position: "center";
|
|
17864
|
-
social_buttons_layout: "bottom";
|
|
17938
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
17939
|
+
social_buttons_layout: "bottom" | "top";
|
|
17865
17940
|
};
|
|
17866
17941
|
themeId: string;
|
|
17867
17942
|
};
|