authhero 0.139.0 → 0.140.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 +53 -40
- package/dist/authhero.d.ts +884 -22
- package/dist/authhero.mjs +6283 -6077
- package/dist/tailwind.css +1 -1
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -9218,6 +9218,107 @@ export declare const formControlSchema: z.ZodObject<{
|
|
|
9218
9218
|
customizations?: Record<string, any> | undefined;
|
|
9219
9219
|
}>;
|
|
9220
9220
|
export type FormControl = z.infer<typeof formControlSchema>;
|
|
9221
|
+
/**
|
|
9222
|
+
* Schema for form components (fields, text, buttons, etc)
|
|
9223
|
+
*/
|
|
9224
|
+
export declare const formNodeComponentDefinition: z.ZodDiscriminatedUnion<"type", [
|
|
9225
|
+
z.ZodObject<{
|
|
9226
|
+
id: z.ZodString;
|
|
9227
|
+
type: z.ZodLiteral<"RICH_TEXT">;
|
|
9228
|
+
config: z.ZodObject<{
|
|
9229
|
+
content: z.ZodString;
|
|
9230
|
+
}, "strip", z.ZodTypeAny, {
|
|
9231
|
+
content: string;
|
|
9232
|
+
}, {
|
|
9233
|
+
content: string;
|
|
9234
|
+
}>;
|
|
9235
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
9236
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9237
|
+
}, "strip", z.ZodTypeAny, {
|
|
9238
|
+
type: "RICH_TEXT";
|
|
9239
|
+
id: string;
|
|
9240
|
+
config: {
|
|
9241
|
+
content: string;
|
|
9242
|
+
};
|
|
9243
|
+
visible: boolean;
|
|
9244
|
+
order?: number | undefined;
|
|
9245
|
+
}, {
|
|
9246
|
+
type: "RICH_TEXT";
|
|
9247
|
+
id: string;
|
|
9248
|
+
config: {
|
|
9249
|
+
content: string;
|
|
9250
|
+
};
|
|
9251
|
+
order?: number | undefined;
|
|
9252
|
+
visible?: boolean | undefined;
|
|
9253
|
+
}>,
|
|
9254
|
+
z.ZodObject<{
|
|
9255
|
+
id: z.ZodString;
|
|
9256
|
+
type: z.ZodLiteral<"LEGAL">;
|
|
9257
|
+
config: z.ZodObject<{
|
|
9258
|
+
text: z.ZodString;
|
|
9259
|
+
html: z.ZodOptional<z.ZodBoolean>;
|
|
9260
|
+
}, "strip", z.ZodTypeAny, {
|
|
9261
|
+
text: string;
|
|
9262
|
+
html?: boolean | undefined;
|
|
9263
|
+
}, {
|
|
9264
|
+
text: string;
|
|
9265
|
+
html?: boolean | undefined;
|
|
9266
|
+
}>;
|
|
9267
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
9268
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
9269
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9270
|
+
}, "strip", z.ZodTypeAny, {
|
|
9271
|
+
type: "LEGAL";
|
|
9272
|
+
id: string;
|
|
9273
|
+
config: {
|
|
9274
|
+
text: string;
|
|
9275
|
+
html?: boolean | undefined;
|
|
9276
|
+
};
|
|
9277
|
+
visible: boolean;
|
|
9278
|
+
required?: boolean | undefined;
|
|
9279
|
+
order?: number | undefined;
|
|
9280
|
+
}, {
|
|
9281
|
+
type: "LEGAL";
|
|
9282
|
+
id: string;
|
|
9283
|
+
config: {
|
|
9284
|
+
text: string;
|
|
9285
|
+
html?: boolean | undefined;
|
|
9286
|
+
};
|
|
9287
|
+
required?: boolean | undefined;
|
|
9288
|
+
order?: number | undefined;
|
|
9289
|
+
visible?: boolean | undefined;
|
|
9290
|
+
}>,
|
|
9291
|
+
z.ZodObject<{
|
|
9292
|
+
id: z.ZodString;
|
|
9293
|
+
type: z.ZodLiteral<"NEXT_BUTTON">;
|
|
9294
|
+
config: z.ZodObject<{
|
|
9295
|
+
text: z.ZodOptional<z.ZodString>;
|
|
9296
|
+
}, "strip", z.ZodTypeAny, {
|
|
9297
|
+
text?: string | undefined;
|
|
9298
|
+
}, {
|
|
9299
|
+
text?: string | undefined;
|
|
9300
|
+
}>;
|
|
9301
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
9302
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9303
|
+
}, "strip", z.ZodTypeAny, {
|
|
9304
|
+
type: "NEXT_BUTTON";
|
|
9305
|
+
id: string;
|
|
9306
|
+
config: {
|
|
9307
|
+
text?: string | undefined;
|
|
9308
|
+
};
|
|
9309
|
+
visible: boolean;
|
|
9310
|
+
order?: number | undefined;
|
|
9311
|
+
}, {
|
|
9312
|
+
type: "NEXT_BUTTON";
|
|
9313
|
+
id: string;
|
|
9314
|
+
config: {
|
|
9315
|
+
text?: string | undefined;
|
|
9316
|
+
};
|
|
9317
|
+
order?: number | undefined;
|
|
9318
|
+
visible?: boolean | undefined;
|
|
9319
|
+
}>
|
|
9320
|
+
]>;
|
|
9321
|
+
export type FormNodeComponent = z.infer<typeof formNodeComponentDefinition>;
|
|
9221
9322
|
/**
|
|
9222
9323
|
* Schema for forms (flow-based, matches new JSON structure)
|
|
9223
9324
|
*/
|
|
@@ -9393,20 +9494,194 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
9393
9494
|
}>;
|
|
9394
9495
|
alias: z.ZodOptional<z.ZodString>;
|
|
9395
9496
|
config: z.ZodObject<{
|
|
9396
|
-
components: z.ZodArray<z.
|
|
9497
|
+
components: z.ZodArray<z.ZodDiscriminatedUnion<"type", [
|
|
9498
|
+
z.ZodObject<{
|
|
9499
|
+
id: z.ZodString;
|
|
9500
|
+
type: z.ZodLiteral<"RICH_TEXT">;
|
|
9501
|
+
config: z.ZodObject<{
|
|
9502
|
+
content: z.ZodString;
|
|
9503
|
+
}, "strip", z.ZodTypeAny, {
|
|
9504
|
+
content: string;
|
|
9505
|
+
}, {
|
|
9506
|
+
content: string;
|
|
9507
|
+
}>;
|
|
9508
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
9509
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9510
|
+
}, "strip", z.ZodTypeAny, {
|
|
9511
|
+
type: "RICH_TEXT";
|
|
9512
|
+
id: string;
|
|
9513
|
+
config: {
|
|
9514
|
+
content: string;
|
|
9515
|
+
};
|
|
9516
|
+
visible: boolean;
|
|
9517
|
+
order?: number | undefined;
|
|
9518
|
+
}, {
|
|
9519
|
+
type: "RICH_TEXT";
|
|
9520
|
+
id: string;
|
|
9521
|
+
config: {
|
|
9522
|
+
content: string;
|
|
9523
|
+
};
|
|
9524
|
+
order?: number | undefined;
|
|
9525
|
+
visible?: boolean | undefined;
|
|
9526
|
+
}>,
|
|
9527
|
+
z.ZodObject<{
|
|
9528
|
+
id: z.ZodString;
|
|
9529
|
+
type: z.ZodLiteral<"LEGAL">;
|
|
9530
|
+
config: z.ZodObject<{
|
|
9531
|
+
text: z.ZodString;
|
|
9532
|
+
html: z.ZodOptional<z.ZodBoolean>;
|
|
9533
|
+
}, "strip", z.ZodTypeAny, {
|
|
9534
|
+
text: string;
|
|
9535
|
+
html?: boolean | undefined;
|
|
9536
|
+
}, {
|
|
9537
|
+
text: string;
|
|
9538
|
+
html?: boolean | undefined;
|
|
9539
|
+
}>;
|
|
9540
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
9541
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
9542
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9543
|
+
}, "strip", z.ZodTypeAny, {
|
|
9544
|
+
type: "LEGAL";
|
|
9545
|
+
id: string;
|
|
9546
|
+
config: {
|
|
9547
|
+
text: string;
|
|
9548
|
+
html?: boolean | undefined;
|
|
9549
|
+
};
|
|
9550
|
+
visible: boolean;
|
|
9551
|
+
required?: boolean | undefined;
|
|
9552
|
+
order?: number | undefined;
|
|
9553
|
+
}, {
|
|
9554
|
+
type: "LEGAL";
|
|
9555
|
+
id: string;
|
|
9556
|
+
config: {
|
|
9557
|
+
text: string;
|
|
9558
|
+
html?: boolean | undefined;
|
|
9559
|
+
};
|
|
9560
|
+
required?: boolean | undefined;
|
|
9561
|
+
order?: number | undefined;
|
|
9562
|
+
visible?: boolean | undefined;
|
|
9563
|
+
}>,
|
|
9564
|
+
z.ZodObject<{
|
|
9565
|
+
id: z.ZodString;
|
|
9566
|
+
type: z.ZodLiteral<"NEXT_BUTTON">;
|
|
9567
|
+
config: z.ZodObject<{
|
|
9568
|
+
text: z.ZodOptional<z.ZodString>;
|
|
9569
|
+
}, "strip", z.ZodTypeAny, {
|
|
9570
|
+
text?: string | undefined;
|
|
9571
|
+
}, {
|
|
9572
|
+
text?: string | undefined;
|
|
9573
|
+
}>;
|
|
9574
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
9575
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9576
|
+
}, "strip", z.ZodTypeAny, {
|
|
9577
|
+
type: "NEXT_BUTTON";
|
|
9578
|
+
id: string;
|
|
9579
|
+
config: {
|
|
9580
|
+
text?: string | undefined;
|
|
9581
|
+
};
|
|
9582
|
+
visible: boolean;
|
|
9583
|
+
order?: number | undefined;
|
|
9584
|
+
}, {
|
|
9585
|
+
type: "NEXT_BUTTON";
|
|
9586
|
+
id: string;
|
|
9587
|
+
config: {
|
|
9588
|
+
text?: string | undefined;
|
|
9589
|
+
};
|
|
9590
|
+
order?: number | undefined;
|
|
9591
|
+
visible?: boolean | undefined;
|
|
9592
|
+
}>
|
|
9593
|
+
]>, "many">;
|
|
9397
9594
|
next_node: z.ZodString;
|
|
9398
9595
|
}, "strip", z.ZodTypeAny, {
|
|
9399
|
-
components:
|
|
9596
|
+
components: ({
|
|
9597
|
+
type: "RICH_TEXT";
|
|
9598
|
+
id: string;
|
|
9599
|
+
config: {
|
|
9600
|
+
content: string;
|
|
9601
|
+
};
|
|
9602
|
+
visible: boolean;
|
|
9603
|
+
order?: number | undefined;
|
|
9604
|
+
} | {
|
|
9605
|
+
type: "LEGAL";
|
|
9606
|
+
id: string;
|
|
9607
|
+
config: {
|
|
9608
|
+
text: string;
|
|
9609
|
+
html?: boolean | undefined;
|
|
9610
|
+
};
|
|
9611
|
+
visible: boolean;
|
|
9612
|
+
required?: boolean | undefined;
|
|
9613
|
+
order?: number | undefined;
|
|
9614
|
+
} | {
|
|
9615
|
+
type: "NEXT_BUTTON";
|
|
9616
|
+
id: string;
|
|
9617
|
+
config: {
|
|
9618
|
+
text?: string | undefined;
|
|
9619
|
+
};
|
|
9620
|
+
visible: boolean;
|
|
9621
|
+
order?: number | undefined;
|
|
9622
|
+
})[];
|
|
9400
9623
|
next_node: string;
|
|
9401
9624
|
}, {
|
|
9402
|
-
components:
|
|
9625
|
+
components: ({
|
|
9626
|
+
type: "RICH_TEXT";
|
|
9627
|
+
id: string;
|
|
9628
|
+
config: {
|
|
9629
|
+
content: string;
|
|
9630
|
+
};
|
|
9631
|
+
order?: number | undefined;
|
|
9632
|
+
visible?: boolean | undefined;
|
|
9633
|
+
} | {
|
|
9634
|
+
type: "LEGAL";
|
|
9635
|
+
id: string;
|
|
9636
|
+
config: {
|
|
9637
|
+
text: string;
|
|
9638
|
+
html?: boolean | undefined;
|
|
9639
|
+
};
|
|
9640
|
+
required?: boolean | undefined;
|
|
9641
|
+
order?: number | undefined;
|
|
9642
|
+
visible?: boolean | undefined;
|
|
9643
|
+
} | {
|
|
9644
|
+
type: "NEXT_BUTTON";
|
|
9645
|
+
id: string;
|
|
9646
|
+
config: {
|
|
9647
|
+
text?: string | undefined;
|
|
9648
|
+
};
|
|
9649
|
+
order?: number | undefined;
|
|
9650
|
+
visible?: boolean | undefined;
|
|
9651
|
+
})[];
|
|
9403
9652
|
next_node: string;
|
|
9404
9653
|
}>;
|
|
9405
9654
|
}, "strip", z.ZodTypeAny, {
|
|
9406
9655
|
type: "STEP";
|
|
9407
9656
|
id: string;
|
|
9408
9657
|
config: {
|
|
9409
|
-
components:
|
|
9658
|
+
components: ({
|
|
9659
|
+
type: "RICH_TEXT";
|
|
9660
|
+
id: string;
|
|
9661
|
+
config: {
|
|
9662
|
+
content: string;
|
|
9663
|
+
};
|
|
9664
|
+
visible: boolean;
|
|
9665
|
+
order?: number | undefined;
|
|
9666
|
+
} | {
|
|
9667
|
+
type: "LEGAL";
|
|
9668
|
+
id: string;
|
|
9669
|
+
config: {
|
|
9670
|
+
text: string;
|
|
9671
|
+
html?: boolean | undefined;
|
|
9672
|
+
};
|
|
9673
|
+
visible: boolean;
|
|
9674
|
+
required?: boolean | undefined;
|
|
9675
|
+
order?: number | undefined;
|
|
9676
|
+
} | {
|
|
9677
|
+
type: "NEXT_BUTTON";
|
|
9678
|
+
id: string;
|
|
9679
|
+
config: {
|
|
9680
|
+
text?: string | undefined;
|
|
9681
|
+
};
|
|
9682
|
+
visible: boolean;
|
|
9683
|
+
order?: number | undefined;
|
|
9684
|
+
})[];
|
|
9410
9685
|
next_node: string;
|
|
9411
9686
|
};
|
|
9412
9687
|
coordinates: {
|
|
@@ -9418,7 +9693,33 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
9418
9693
|
type: "STEP";
|
|
9419
9694
|
id: string;
|
|
9420
9695
|
config: {
|
|
9421
|
-
components:
|
|
9696
|
+
components: ({
|
|
9697
|
+
type: "RICH_TEXT";
|
|
9698
|
+
id: string;
|
|
9699
|
+
config: {
|
|
9700
|
+
content: string;
|
|
9701
|
+
};
|
|
9702
|
+
order?: number | undefined;
|
|
9703
|
+
visible?: boolean | undefined;
|
|
9704
|
+
} | {
|
|
9705
|
+
type: "LEGAL";
|
|
9706
|
+
id: string;
|
|
9707
|
+
config: {
|
|
9708
|
+
text: string;
|
|
9709
|
+
html?: boolean | undefined;
|
|
9710
|
+
};
|
|
9711
|
+
required?: boolean | undefined;
|
|
9712
|
+
order?: number | undefined;
|
|
9713
|
+
visible?: boolean | undefined;
|
|
9714
|
+
} | {
|
|
9715
|
+
type: "NEXT_BUTTON";
|
|
9716
|
+
id: string;
|
|
9717
|
+
config: {
|
|
9718
|
+
text?: string | undefined;
|
|
9719
|
+
};
|
|
9720
|
+
order?: number | undefined;
|
|
9721
|
+
visible?: boolean | undefined;
|
|
9722
|
+
})[];
|
|
9422
9723
|
next_node: string;
|
|
9423
9724
|
};
|
|
9424
9725
|
coordinates: {
|
|
@@ -9587,7 +9888,33 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
9587
9888
|
type: "STEP";
|
|
9588
9889
|
id: string;
|
|
9589
9890
|
config: {
|
|
9590
|
-
components:
|
|
9891
|
+
components: ({
|
|
9892
|
+
type: "RICH_TEXT";
|
|
9893
|
+
id: string;
|
|
9894
|
+
config: {
|
|
9895
|
+
content: string;
|
|
9896
|
+
};
|
|
9897
|
+
visible: boolean;
|
|
9898
|
+
order?: number | undefined;
|
|
9899
|
+
} | {
|
|
9900
|
+
type: "LEGAL";
|
|
9901
|
+
id: string;
|
|
9902
|
+
config: {
|
|
9903
|
+
text: string;
|
|
9904
|
+
html?: boolean | undefined;
|
|
9905
|
+
};
|
|
9906
|
+
visible: boolean;
|
|
9907
|
+
required?: boolean | undefined;
|
|
9908
|
+
order?: number | undefined;
|
|
9909
|
+
} | {
|
|
9910
|
+
type: "NEXT_BUTTON";
|
|
9911
|
+
id: string;
|
|
9912
|
+
config: {
|
|
9913
|
+
text?: string | undefined;
|
|
9914
|
+
};
|
|
9915
|
+
visible: boolean;
|
|
9916
|
+
order?: number | undefined;
|
|
9917
|
+
})[];
|
|
9591
9918
|
next_node: string;
|
|
9592
9919
|
};
|
|
9593
9920
|
coordinates: {
|
|
@@ -9668,7 +9995,33 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
9668
9995
|
type: "STEP";
|
|
9669
9996
|
id: string;
|
|
9670
9997
|
config: {
|
|
9671
|
-
components:
|
|
9998
|
+
components: ({
|
|
9999
|
+
type: "RICH_TEXT";
|
|
10000
|
+
id: string;
|
|
10001
|
+
config: {
|
|
10002
|
+
content: string;
|
|
10003
|
+
};
|
|
10004
|
+
order?: number | undefined;
|
|
10005
|
+
visible?: boolean | undefined;
|
|
10006
|
+
} | {
|
|
10007
|
+
type: "LEGAL";
|
|
10008
|
+
id: string;
|
|
10009
|
+
config: {
|
|
10010
|
+
text: string;
|
|
10011
|
+
html?: boolean | undefined;
|
|
10012
|
+
};
|
|
10013
|
+
required?: boolean | undefined;
|
|
10014
|
+
order?: number | undefined;
|
|
10015
|
+
visible?: boolean | undefined;
|
|
10016
|
+
} | {
|
|
10017
|
+
type: "NEXT_BUTTON";
|
|
10018
|
+
id: string;
|
|
10019
|
+
config: {
|
|
10020
|
+
text?: string | undefined;
|
|
10021
|
+
};
|
|
10022
|
+
order?: number | undefined;
|
|
10023
|
+
visible?: boolean | undefined;
|
|
10024
|
+
})[];
|
|
9672
10025
|
next_node: string;
|
|
9673
10026
|
};
|
|
9674
10027
|
coordinates: {
|
|
@@ -9874,20 +10227,194 @@ export declare const formSchema: z.ZodObject<{
|
|
|
9874
10227
|
}>;
|
|
9875
10228
|
alias: z.ZodOptional<z.ZodString>;
|
|
9876
10229
|
config: z.ZodObject<{
|
|
9877
|
-
components: z.ZodArray<z.
|
|
10230
|
+
components: z.ZodArray<z.ZodDiscriminatedUnion<"type", [
|
|
10231
|
+
z.ZodObject<{
|
|
10232
|
+
id: z.ZodString;
|
|
10233
|
+
type: z.ZodLiteral<"RICH_TEXT">;
|
|
10234
|
+
config: z.ZodObject<{
|
|
10235
|
+
content: z.ZodString;
|
|
10236
|
+
}, "strip", z.ZodTypeAny, {
|
|
10237
|
+
content: string;
|
|
10238
|
+
}, {
|
|
10239
|
+
content: string;
|
|
10240
|
+
}>;
|
|
10241
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
10242
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10243
|
+
}, "strip", z.ZodTypeAny, {
|
|
10244
|
+
type: "RICH_TEXT";
|
|
10245
|
+
id: string;
|
|
10246
|
+
config: {
|
|
10247
|
+
content: string;
|
|
10248
|
+
};
|
|
10249
|
+
visible: boolean;
|
|
10250
|
+
order?: number | undefined;
|
|
10251
|
+
}, {
|
|
10252
|
+
type: "RICH_TEXT";
|
|
10253
|
+
id: string;
|
|
10254
|
+
config: {
|
|
10255
|
+
content: string;
|
|
10256
|
+
};
|
|
10257
|
+
order?: number | undefined;
|
|
10258
|
+
visible?: boolean | undefined;
|
|
10259
|
+
}>,
|
|
10260
|
+
z.ZodObject<{
|
|
10261
|
+
id: z.ZodString;
|
|
10262
|
+
type: z.ZodLiteral<"LEGAL">;
|
|
10263
|
+
config: z.ZodObject<{
|
|
10264
|
+
text: z.ZodString;
|
|
10265
|
+
html: z.ZodOptional<z.ZodBoolean>;
|
|
10266
|
+
}, "strip", z.ZodTypeAny, {
|
|
10267
|
+
text: string;
|
|
10268
|
+
html?: boolean | undefined;
|
|
10269
|
+
}, {
|
|
10270
|
+
text: string;
|
|
10271
|
+
html?: boolean | undefined;
|
|
10272
|
+
}>;
|
|
10273
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
10274
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
10275
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10276
|
+
}, "strip", z.ZodTypeAny, {
|
|
10277
|
+
type: "LEGAL";
|
|
10278
|
+
id: string;
|
|
10279
|
+
config: {
|
|
10280
|
+
text: string;
|
|
10281
|
+
html?: boolean | undefined;
|
|
10282
|
+
};
|
|
10283
|
+
visible: boolean;
|
|
10284
|
+
required?: boolean | undefined;
|
|
10285
|
+
order?: number | undefined;
|
|
10286
|
+
}, {
|
|
10287
|
+
type: "LEGAL";
|
|
10288
|
+
id: string;
|
|
10289
|
+
config: {
|
|
10290
|
+
text: string;
|
|
10291
|
+
html?: boolean | undefined;
|
|
10292
|
+
};
|
|
10293
|
+
required?: boolean | undefined;
|
|
10294
|
+
order?: number | undefined;
|
|
10295
|
+
visible?: boolean | undefined;
|
|
10296
|
+
}>,
|
|
10297
|
+
z.ZodObject<{
|
|
10298
|
+
id: z.ZodString;
|
|
10299
|
+
type: z.ZodLiteral<"NEXT_BUTTON">;
|
|
10300
|
+
config: z.ZodObject<{
|
|
10301
|
+
text: z.ZodOptional<z.ZodString>;
|
|
10302
|
+
}, "strip", z.ZodTypeAny, {
|
|
10303
|
+
text?: string | undefined;
|
|
10304
|
+
}, {
|
|
10305
|
+
text?: string | undefined;
|
|
10306
|
+
}>;
|
|
10307
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
10308
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10309
|
+
}, "strip", z.ZodTypeAny, {
|
|
10310
|
+
type: "NEXT_BUTTON";
|
|
10311
|
+
id: string;
|
|
10312
|
+
config: {
|
|
10313
|
+
text?: string | undefined;
|
|
10314
|
+
};
|
|
10315
|
+
visible: boolean;
|
|
10316
|
+
order?: number | undefined;
|
|
10317
|
+
}, {
|
|
10318
|
+
type: "NEXT_BUTTON";
|
|
10319
|
+
id: string;
|
|
10320
|
+
config: {
|
|
10321
|
+
text?: string | undefined;
|
|
10322
|
+
};
|
|
10323
|
+
order?: number | undefined;
|
|
10324
|
+
visible?: boolean | undefined;
|
|
10325
|
+
}>
|
|
10326
|
+
]>, "many">;
|
|
9878
10327
|
next_node: z.ZodString;
|
|
9879
10328
|
}, "strip", z.ZodTypeAny, {
|
|
9880
|
-
components:
|
|
10329
|
+
components: ({
|
|
10330
|
+
type: "RICH_TEXT";
|
|
10331
|
+
id: string;
|
|
10332
|
+
config: {
|
|
10333
|
+
content: string;
|
|
10334
|
+
};
|
|
10335
|
+
visible: boolean;
|
|
10336
|
+
order?: number | undefined;
|
|
10337
|
+
} | {
|
|
10338
|
+
type: "LEGAL";
|
|
10339
|
+
id: string;
|
|
10340
|
+
config: {
|
|
10341
|
+
text: string;
|
|
10342
|
+
html?: boolean | undefined;
|
|
10343
|
+
};
|
|
10344
|
+
visible: boolean;
|
|
10345
|
+
required?: boolean | undefined;
|
|
10346
|
+
order?: number | undefined;
|
|
10347
|
+
} | {
|
|
10348
|
+
type: "NEXT_BUTTON";
|
|
10349
|
+
id: string;
|
|
10350
|
+
config: {
|
|
10351
|
+
text?: string | undefined;
|
|
10352
|
+
};
|
|
10353
|
+
visible: boolean;
|
|
10354
|
+
order?: number | undefined;
|
|
10355
|
+
})[];
|
|
9881
10356
|
next_node: string;
|
|
9882
10357
|
}, {
|
|
9883
|
-
components:
|
|
10358
|
+
components: ({
|
|
10359
|
+
type: "RICH_TEXT";
|
|
10360
|
+
id: string;
|
|
10361
|
+
config: {
|
|
10362
|
+
content: string;
|
|
10363
|
+
};
|
|
10364
|
+
order?: number | undefined;
|
|
10365
|
+
visible?: boolean | undefined;
|
|
10366
|
+
} | {
|
|
10367
|
+
type: "LEGAL";
|
|
10368
|
+
id: string;
|
|
10369
|
+
config: {
|
|
10370
|
+
text: string;
|
|
10371
|
+
html?: boolean | undefined;
|
|
10372
|
+
};
|
|
10373
|
+
required?: boolean | undefined;
|
|
10374
|
+
order?: number | undefined;
|
|
10375
|
+
visible?: boolean | undefined;
|
|
10376
|
+
} | {
|
|
10377
|
+
type: "NEXT_BUTTON";
|
|
10378
|
+
id: string;
|
|
10379
|
+
config: {
|
|
10380
|
+
text?: string | undefined;
|
|
10381
|
+
};
|
|
10382
|
+
order?: number | undefined;
|
|
10383
|
+
visible?: boolean | undefined;
|
|
10384
|
+
})[];
|
|
9884
10385
|
next_node: string;
|
|
9885
10386
|
}>;
|
|
9886
10387
|
}, "strip", z.ZodTypeAny, {
|
|
9887
10388
|
type: "STEP";
|
|
9888
10389
|
id: string;
|
|
9889
10390
|
config: {
|
|
9890
|
-
components:
|
|
10391
|
+
components: ({
|
|
10392
|
+
type: "RICH_TEXT";
|
|
10393
|
+
id: string;
|
|
10394
|
+
config: {
|
|
10395
|
+
content: string;
|
|
10396
|
+
};
|
|
10397
|
+
visible: boolean;
|
|
10398
|
+
order?: number | undefined;
|
|
10399
|
+
} | {
|
|
10400
|
+
type: "LEGAL";
|
|
10401
|
+
id: string;
|
|
10402
|
+
config: {
|
|
10403
|
+
text: string;
|
|
10404
|
+
html?: boolean | undefined;
|
|
10405
|
+
};
|
|
10406
|
+
visible: boolean;
|
|
10407
|
+
required?: boolean | undefined;
|
|
10408
|
+
order?: number | undefined;
|
|
10409
|
+
} | {
|
|
10410
|
+
type: "NEXT_BUTTON";
|
|
10411
|
+
id: string;
|
|
10412
|
+
config: {
|
|
10413
|
+
text?: string | undefined;
|
|
10414
|
+
};
|
|
10415
|
+
visible: boolean;
|
|
10416
|
+
order?: number | undefined;
|
|
10417
|
+
})[];
|
|
9891
10418
|
next_node: string;
|
|
9892
10419
|
};
|
|
9893
10420
|
coordinates: {
|
|
@@ -9899,7 +10426,33 @@ export declare const formSchema: z.ZodObject<{
|
|
|
9899
10426
|
type: "STEP";
|
|
9900
10427
|
id: string;
|
|
9901
10428
|
config: {
|
|
9902
|
-
components:
|
|
10429
|
+
components: ({
|
|
10430
|
+
type: "RICH_TEXT";
|
|
10431
|
+
id: string;
|
|
10432
|
+
config: {
|
|
10433
|
+
content: string;
|
|
10434
|
+
};
|
|
10435
|
+
order?: number | undefined;
|
|
10436
|
+
visible?: boolean | undefined;
|
|
10437
|
+
} | {
|
|
10438
|
+
type: "LEGAL";
|
|
10439
|
+
id: string;
|
|
10440
|
+
config: {
|
|
10441
|
+
text: string;
|
|
10442
|
+
html?: boolean | undefined;
|
|
10443
|
+
};
|
|
10444
|
+
required?: boolean | undefined;
|
|
10445
|
+
order?: number | undefined;
|
|
10446
|
+
visible?: boolean | undefined;
|
|
10447
|
+
} | {
|
|
10448
|
+
type: "NEXT_BUTTON";
|
|
10449
|
+
id: string;
|
|
10450
|
+
config: {
|
|
10451
|
+
text?: string | undefined;
|
|
10452
|
+
};
|
|
10453
|
+
order?: number | undefined;
|
|
10454
|
+
visible?: boolean | undefined;
|
|
10455
|
+
})[];
|
|
9903
10456
|
next_node: string;
|
|
9904
10457
|
};
|
|
9905
10458
|
coordinates: {
|
|
@@ -10073,7 +10626,33 @@ export declare const formSchema: z.ZodObject<{
|
|
|
10073
10626
|
type: "STEP";
|
|
10074
10627
|
id: string;
|
|
10075
10628
|
config: {
|
|
10076
|
-
components:
|
|
10629
|
+
components: ({
|
|
10630
|
+
type: "RICH_TEXT";
|
|
10631
|
+
id: string;
|
|
10632
|
+
config: {
|
|
10633
|
+
content: string;
|
|
10634
|
+
};
|
|
10635
|
+
visible: boolean;
|
|
10636
|
+
order?: number | undefined;
|
|
10637
|
+
} | {
|
|
10638
|
+
type: "LEGAL";
|
|
10639
|
+
id: string;
|
|
10640
|
+
config: {
|
|
10641
|
+
text: string;
|
|
10642
|
+
html?: boolean | undefined;
|
|
10643
|
+
};
|
|
10644
|
+
visible: boolean;
|
|
10645
|
+
required?: boolean | undefined;
|
|
10646
|
+
order?: number | undefined;
|
|
10647
|
+
} | {
|
|
10648
|
+
type: "NEXT_BUTTON";
|
|
10649
|
+
id: string;
|
|
10650
|
+
config: {
|
|
10651
|
+
text?: string | undefined;
|
|
10652
|
+
};
|
|
10653
|
+
visible: boolean;
|
|
10654
|
+
order?: number | undefined;
|
|
10655
|
+
})[];
|
|
10077
10656
|
next_node: string;
|
|
10078
10657
|
};
|
|
10079
10658
|
coordinates: {
|
|
@@ -10157,7 +10736,33 @@ export declare const formSchema: z.ZodObject<{
|
|
|
10157
10736
|
type: "STEP";
|
|
10158
10737
|
id: string;
|
|
10159
10738
|
config: {
|
|
10160
|
-
components:
|
|
10739
|
+
components: ({
|
|
10740
|
+
type: "RICH_TEXT";
|
|
10741
|
+
id: string;
|
|
10742
|
+
config: {
|
|
10743
|
+
content: string;
|
|
10744
|
+
};
|
|
10745
|
+
order?: number | undefined;
|
|
10746
|
+
visible?: boolean | undefined;
|
|
10747
|
+
} | {
|
|
10748
|
+
type: "LEGAL";
|
|
10749
|
+
id: string;
|
|
10750
|
+
config: {
|
|
10751
|
+
text: string;
|
|
10752
|
+
html?: boolean | undefined;
|
|
10753
|
+
};
|
|
10754
|
+
required?: boolean | undefined;
|
|
10755
|
+
order?: number | undefined;
|
|
10756
|
+
visible?: boolean | undefined;
|
|
10757
|
+
} | {
|
|
10758
|
+
type: "NEXT_BUTTON";
|
|
10759
|
+
id: string;
|
|
10760
|
+
config: {
|
|
10761
|
+
text?: string | undefined;
|
|
10762
|
+
};
|
|
10763
|
+
order?: number | undefined;
|
|
10764
|
+
visible?: boolean | undefined;
|
|
10765
|
+
})[];
|
|
10161
10766
|
next_node: string;
|
|
10162
10767
|
};
|
|
10163
10768
|
coordinates: {
|
|
@@ -13084,6 +13689,12 @@ export type OnExecutePostUserRegistrationAPI = {
|
|
|
13084
13689
|
};
|
|
13085
13690
|
export type OnExecutePreUserRegistration = (event: HookEvent, api: OnExecutePreUserRegistrationAPI) => Promise<void>;
|
|
13086
13691
|
export type OnExecutePostUserRegistration = (event: HookEvent, api: OnExecutePostUserRegistrationAPI) => Promise<void>;
|
|
13692
|
+
export type OnExecutePostLoginAPI = {
|
|
13693
|
+
prompt: {
|
|
13694
|
+
render: (formId: string) => void;
|
|
13695
|
+
};
|
|
13696
|
+
};
|
|
13697
|
+
export type OnExecutePostLogin = (event: HookEvent, api: OnExecutePostLoginAPI) => Promise<void>;
|
|
13087
13698
|
export type SendEmailParams = {
|
|
13088
13699
|
emailProvider: EmailProvider;
|
|
13089
13700
|
to: string;
|
|
@@ -13144,6 +13755,7 @@ export type Bindings = {
|
|
|
13144
13755
|
onExecuteCredentialsExchange?: OnExecuteCredentialsExchange;
|
|
13145
13756
|
onExecutePreUserRegistration?: OnExecutePreUserRegistration;
|
|
13146
13757
|
onExecutePostUserRegistration?: OnExecutePostUserRegistration;
|
|
13758
|
+
onExecutePostLogin?: OnExecutePostLogin;
|
|
13147
13759
|
};
|
|
13148
13760
|
emailProviders?: {
|
|
13149
13761
|
[key: string]: EmailService;
|
|
@@ -13333,7 +13945,7 @@ declare const UserNotFound: FC<Props$21>;
|
|
|
13333
13945
|
export declare const VippsLogo: ({ ...props }: {
|
|
13334
13946
|
[x: string]: any;
|
|
13335
13947
|
}) => import("hono/jsx/jsx-dev-runtime").JSX.Element;
|
|
13336
|
-
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: }.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%}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.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-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.flex{display: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}.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}.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-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-lg{border-radius:.625rem}.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%}.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-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-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}.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}.leading-\\[0\\]{line-height:0}.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-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))}.opacity-40{opacity:.4}.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-2:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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)}.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%}}";
|
|
13948
|
+
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%}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.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-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.flex{display: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}.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-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-lg{border-radius:.625rem}.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%}.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-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-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}.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-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))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.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-2:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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)}.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%}}";
|
|
13337
13949
|
export declare function injectTailwindCSS(): void;
|
|
13338
13950
|
export declare function init(config: AuthHeroConfig): {
|
|
13339
13951
|
app: OpenAPIHono<{
|
|
@@ -13415,7 +14027,33 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13415
14027
|
type: "STEP";
|
|
13416
14028
|
id: string;
|
|
13417
14029
|
config: {
|
|
13418
|
-
components:
|
|
14030
|
+
components: ({
|
|
14031
|
+
type: "RICH_TEXT";
|
|
14032
|
+
id: string;
|
|
14033
|
+
config: {
|
|
14034
|
+
content: string;
|
|
14035
|
+
};
|
|
14036
|
+
visible: boolean;
|
|
14037
|
+
order?: number | undefined | undefined;
|
|
14038
|
+
} | {
|
|
14039
|
+
type: "LEGAL";
|
|
14040
|
+
id: string;
|
|
14041
|
+
config: {
|
|
14042
|
+
text: string;
|
|
14043
|
+
html?: boolean | undefined | undefined;
|
|
14044
|
+
};
|
|
14045
|
+
visible: boolean;
|
|
14046
|
+
required?: boolean | undefined | undefined;
|
|
14047
|
+
order?: number | undefined | undefined;
|
|
14048
|
+
} | {
|
|
14049
|
+
type: "NEXT_BUTTON";
|
|
14050
|
+
id: string;
|
|
14051
|
+
config: {
|
|
14052
|
+
text?: string | undefined | undefined;
|
|
14053
|
+
};
|
|
14054
|
+
visible: boolean;
|
|
14055
|
+
order?: number | undefined | undefined;
|
|
14056
|
+
})[];
|
|
13419
14057
|
next_node: string;
|
|
13420
14058
|
};
|
|
13421
14059
|
coordinates: {
|
|
@@ -13509,7 +14147,33 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13509
14147
|
type: "STEP";
|
|
13510
14148
|
id: string;
|
|
13511
14149
|
config: {
|
|
13512
|
-
components:
|
|
14150
|
+
components: ({
|
|
14151
|
+
type: "RICH_TEXT";
|
|
14152
|
+
id: string;
|
|
14153
|
+
config: {
|
|
14154
|
+
content: string;
|
|
14155
|
+
};
|
|
14156
|
+
visible: boolean;
|
|
14157
|
+
order?: number | undefined | undefined;
|
|
14158
|
+
} | {
|
|
14159
|
+
type: "LEGAL";
|
|
14160
|
+
id: string;
|
|
14161
|
+
config: {
|
|
14162
|
+
text: string;
|
|
14163
|
+
html?: boolean | undefined | undefined;
|
|
14164
|
+
};
|
|
14165
|
+
visible: boolean;
|
|
14166
|
+
required?: boolean | undefined | undefined;
|
|
14167
|
+
order?: number | undefined | undefined;
|
|
14168
|
+
} | {
|
|
14169
|
+
type: "NEXT_BUTTON";
|
|
14170
|
+
id: string;
|
|
14171
|
+
config: {
|
|
14172
|
+
text?: string | undefined | undefined;
|
|
14173
|
+
};
|
|
14174
|
+
visible: boolean;
|
|
14175
|
+
order?: number | undefined | undefined;
|
|
14176
|
+
})[];
|
|
13513
14177
|
next_node: string;
|
|
13514
14178
|
};
|
|
13515
14179
|
coordinates: {
|
|
@@ -13617,7 +14281,33 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13617
14281
|
type: "STEP";
|
|
13618
14282
|
id: string;
|
|
13619
14283
|
config: {
|
|
13620
|
-
components:
|
|
14284
|
+
components: ({
|
|
14285
|
+
type: "RICH_TEXT";
|
|
14286
|
+
id: string;
|
|
14287
|
+
config: {
|
|
14288
|
+
content: string;
|
|
14289
|
+
};
|
|
14290
|
+
visible: boolean;
|
|
14291
|
+
order?: number | undefined | undefined;
|
|
14292
|
+
} | {
|
|
14293
|
+
type: "LEGAL";
|
|
14294
|
+
id: string;
|
|
14295
|
+
config: {
|
|
14296
|
+
text: string;
|
|
14297
|
+
html?: boolean | undefined | undefined;
|
|
14298
|
+
};
|
|
14299
|
+
visible: boolean;
|
|
14300
|
+
required?: boolean | undefined | undefined;
|
|
14301
|
+
order?: number | undefined | undefined;
|
|
14302
|
+
} | {
|
|
14303
|
+
type: "NEXT_BUTTON";
|
|
14304
|
+
id: string;
|
|
14305
|
+
config: {
|
|
14306
|
+
text?: string | undefined | undefined;
|
|
14307
|
+
};
|
|
14308
|
+
visible: boolean;
|
|
14309
|
+
order?: number | undefined | undefined;
|
|
14310
|
+
})[];
|
|
13621
14311
|
next_node: string;
|
|
13622
14312
|
};
|
|
13623
14313
|
coordinates: {
|
|
@@ -13738,7 +14428,33 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13738
14428
|
type: "STEP";
|
|
13739
14429
|
id: string;
|
|
13740
14430
|
config: {
|
|
13741
|
-
components:
|
|
14431
|
+
components: ({
|
|
14432
|
+
type: "RICH_TEXT";
|
|
14433
|
+
id: string;
|
|
14434
|
+
config: {
|
|
14435
|
+
content: string;
|
|
14436
|
+
};
|
|
14437
|
+
order?: number | undefined;
|
|
14438
|
+
visible?: boolean | undefined;
|
|
14439
|
+
} | {
|
|
14440
|
+
type: "LEGAL";
|
|
14441
|
+
id: string;
|
|
14442
|
+
config: {
|
|
14443
|
+
text: string;
|
|
14444
|
+
html?: boolean | undefined;
|
|
14445
|
+
};
|
|
14446
|
+
required?: boolean | undefined;
|
|
14447
|
+
order?: number | undefined;
|
|
14448
|
+
visible?: boolean | undefined;
|
|
14449
|
+
} | {
|
|
14450
|
+
type: "NEXT_BUTTON";
|
|
14451
|
+
id: string;
|
|
14452
|
+
config: {
|
|
14453
|
+
text?: string | undefined;
|
|
14454
|
+
};
|
|
14455
|
+
order?: number | undefined;
|
|
14456
|
+
visible?: boolean | undefined;
|
|
14457
|
+
})[];
|
|
13742
14458
|
next_node: string;
|
|
13743
14459
|
};
|
|
13744
14460
|
coordinates: {
|
|
@@ -13824,7 +14540,33 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13824
14540
|
type: "STEP";
|
|
13825
14541
|
id: string;
|
|
13826
14542
|
config: {
|
|
13827
|
-
components:
|
|
14543
|
+
components: ({
|
|
14544
|
+
type: "RICH_TEXT";
|
|
14545
|
+
id: string;
|
|
14546
|
+
config: {
|
|
14547
|
+
content: string;
|
|
14548
|
+
};
|
|
14549
|
+
visible: boolean;
|
|
14550
|
+
order?: number | undefined | undefined;
|
|
14551
|
+
} | {
|
|
14552
|
+
type: "LEGAL";
|
|
14553
|
+
id: string;
|
|
14554
|
+
config: {
|
|
14555
|
+
text: string;
|
|
14556
|
+
html?: boolean | undefined | undefined;
|
|
14557
|
+
};
|
|
14558
|
+
visible: boolean;
|
|
14559
|
+
required?: boolean | undefined | undefined;
|
|
14560
|
+
order?: number | undefined | undefined;
|
|
14561
|
+
} | {
|
|
14562
|
+
type: "NEXT_BUTTON";
|
|
14563
|
+
id: string;
|
|
14564
|
+
config: {
|
|
14565
|
+
text?: string | undefined | undefined;
|
|
14566
|
+
};
|
|
14567
|
+
visible: boolean;
|
|
14568
|
+
order?: number | undefined | undefined;
|
|
14569
|
+
})[];
|
|
13828
14570
|
next_node: string;
|
|
13829
14571
|
};
|
|
13830
14572
|
coordinates: {
|
|
@@ -13924,7 +14666,33 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13924
14666
|
type: "STEP";
|
|
13925
14667
|
id: string;
|
|
13926
14668
|
config: {
|
|
13927
|
-
components:
|
|
14669
|
+
components: ({
|
|
14670
|
+
type: "RICH_TEXT";
|
|
14671
|
+
id: string;
|
|
14672
|
+
config: {
|
|
14673
|
+
content: string;
|
|
14674
|
+
};
|
|
14675
|
+
order?: number | undefined;
|
|
14676
|
+
visible?: boolean | undefined;
|
|
14677
|
+
} | {
|
|
14678
|
+
type: "LEGAL";
|
|
14679
|
+
id: string;
|
|
14680
|
+
config: {
|
|
14681
|
+
text: string;
|
|
14682
|
+
html?: boolean | undefined;
|
|
14683
|
+
};
|
|
14684
|
+
required?: boolean | undefined;
|
|
14685
|
+
order?: number | undefined;
|
|
14686
|
+
visible?: boolean | undefined;
|
|
14687
|
+
} | {
|
|
14688
|
+
type: "NEXT_BUTTON";
|
|
14689
|
+
id: string;
|
|
14690
|
+
config: {
|
|
14691
|
+
text?: string | undefined;
|
|
14692
|
+
};
|
|
14693
|
+
order?: number | undefined;
|
|
14694
|
+
visible?: boolean | undefined;
|
|
14695
|
+
})[];
|
|
13928
14696
|
next_node: string;
|
|
13929
14697
|
};
|
|
13930
14698
|
coordinates: {
|
|
@@ -14010,7 +14778,33 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14010
14778
|
type: "STEP";
|
|
14011
14779
|
id: string;
|
|
14012
14780
|
config: {
|
|
14013
|
-
components:
|
|
14781
|
+
components: ({
|
|
14782
|
+
type: "RICH_TEXT";
|
|
14783
|
+
id: string;
|
|
14784
|
+
config: {
|
|
14785
|
+
content: string;
|
|
14786
|
+
};
|
|
14787
|
+
visible: boolean;
|
|
14788
|
+
order?: number | undefined | undefined;
|
|
14789
|
+
} | {
|
|
14790
|
+
type: "LEGAL";
|
|
14791
|
+
id: string;
|
|
14792
|
+
config: {
|
|
14793
|
+
text: string;
|
|
14794
|
+
html?: boolean | undefined | undefined;
|
|
14795
|
+
};
|
|
14796
|
+
visible: boolean;
|
|
14797
|
+
required?: boolean | undefined | undefined;
|
|
14798
|
+
order?: number | undefined | undefined;
|
|
14799
|
+
} | {
|
|
14800
|
+
type: "NEXT_BUTTON";
|
|
14801
|
+
id: string;
|
|
14802
|
+
config: {
|
|
14803
|
+
text?: string | undefined | undefined;
|
|
14804
|
+
};
|
|
14805
|
+
visible: boolean;
|
|
14806
|
+
order?: number | undefined | undefined;
|
|
14807
|
+
})[];
|
|
14014
14808
|
next_node: string;
|
|
14015
14809
|
};
|
|
14016
14810
|
coordinates: {
|
|
@@ -16593,6 +17387,74 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16593
17387
|
Bindings: Bindings;
|
|
16594
17388
|
Variables: Variables;
|
|
16595
17389
|
}, import("hono/types").MergeSchemaPath<{
|
|
17390
|
+
"/:formId/nodes/:nodeId": {
|
|
17391
|
+
$get: {
|
|
17392
|
+
input: {
|
|
17393
|
+
param: {
|
|
17394
|
+
formId: string;
|
|
17395
|
+
nodeId: string;
|
|
17396
|
+
};
|
|
17397
|
+
} & {
|
|
17398
|
+
query: {
|
|
17399
|
+
state: string;
|
|
17400
|
+
};
|
|
17401
|
+
};
|
|
17402
|
+
output: {};
|
|
17403
|
+
outputFormat: string;
|
|
17404
|
+
status: 200;
|
|
17405
|
+
} | {
|
|
17406
|
+
input: {
|
|
17407
|
+
param: {
|
|
17408
|
+
formId: string;
|
|
17409
|
+
nodeId: string;
|
|
17410
|
+
};
|
|
17411
|
+
} & {
|
|
17412
|
+
query: {
|
|
17413
|
+
state: string;
|
|
17414
|
+
};
|
|
17415
|
+
};
|
|
17416
|
+
output: {};
|
|
17417
|
+
outputFormat: string;
|
|
17418
|
+
status: 404;
|
|
17419
|
+
};
|
|
17420
|
+
};
|
|
17421
|
+
} & {
|
|
17422
|
+
"/:formId/nodes/:nodeId": {
|
|
17423
|
+
$post: {
|
|
17424
|
+
input: {
|
|
17425
|
+
param: {
|
|
17426
|
+
formId: string;
|
|
17427
|
+
nodeId: string;
|
|
17428
|
+
};
|
|
17429
|
+
} & {
|
|
17430
|
+
query: {
|
|
17431
|
+
state: string;
|
|
17432
|
+
};
|
|
17433
|
+
} & {
|
|
17434
|
+
form: Record<string, string>;
|
|
17435
|
+
};
|
|
17436
|
+
output: {};
|
|
17437
|
+
outputFormat: string;
|
|
17438
|
+
status: 200;
|
|
17439
|
+
} | {
|
|
17440
|
+
input: {
|
|
17441
|
+
param: {
|
|
17442
|
+
formId: string;
|
|
17443
|
+
nodeId: string;
|
|
17444
|
+
};
|
|
17445
|
+
} & {
|
|
17446
|
+
query: {
|
|
17447
|
+
state: string;
|
|
17448
|
+
};
|
|
17449
|
+
} & {
|
|
17450
|
+
form: Record<string, string>;
|
|
17451
|
+
};
|
|
17452
|
+
output: {};
|
|
17453
|
+
outputFormat: string;
|
|
17454
|
+
status: 404;
|
|
17455
|
+
};
|
|
17456
|
+
};
|
|
17457
|
+
}, "/forms"> & import("hono/types").MergeSchemaPath<{
|
|
16596
17458
|
"/": {
|
|
16597
17459
|
$get: {
|
|
16598
17460
|
input: {
|