@descope/flow-components 2.0.592 → 2.0.594

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -66,6 +66,7 @@ declare const AddressFieldClass: ComponentClass;
66
66
  declare const TimerButtonClass: ComponentClass;
67
67
  declare const CollapsibleContainerClass: ComponentClass;
68
68
  declare const RecoveryCodesListClass: ComponentClass;
69
+ declare const HcaptchaClass: ComponentClass;
69
70
 
70
71
  type KebabCase<S extends string> = S extends `${infer First}${infer Rest}` ? Rest extends Uncapitalize<Rest> ? `${Uncapitalize<First>}${KebabCase<Rest>}` : `${Uncapitalize<First>}-${KebabCase<Rest>}` : S;
71
72
  type ComponentSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
@@ -117,8 +118,8 @@ declare const Switch: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "r
117
118
  type BooleanType = {
118
119
  type: 'switch' | 'checkbox';
119
120
  };
120
- type Props$J = React.ComponentProps<typeof Checkbox> & React.ComponentProps<typeof Switch> & BooleanType;
121
- declare const Boolean: React.ForwardRefExoticComponent<Omit<Props$J, "ref"> & React.RefAttributes<HTMLInputElement>>;
121
+ type Props$K = React.ComponentProps<typeof Checkbox> & React.ComponentProps<typeof Switch> & BooleanType;
122
+ declare const Boolean: React.ForwardRefExoticComponent<Omit<Props$K, "ref"> & React.RefAttributes<HTMLInputElement>>;
122
123
 
123
124
  declare global {
124
125
  namespace React.JSX {
@@ -143,17 +144,17 @@ declare const Button: React.ForwardRefExoticComponent<Omit<React.ClassAttributes
143
144
  'data-name'?: string;
144
145
  }, "ref"> & React.RefAttributes<HTMLButtonElement>>;
145
146
 
146
- type Props$I = {
147
+ type Props$J = {
147
148
  digits?: number;
148
149
  };
149
150
  declare global {
150
151
  namespace React.JSX {
151
152
  interface IntrinsicElements {
152
- 'descope-passcode': DescopeInputProps & Props$I;
153
+ 'descope-passcode': DescopeInputProps & Props$J;
153
154
  }
154
155
  }
155
156
  }
156
- declare const Code: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$I, "ref"> & React.RefAttributes<HTMLInputElement>>;
157
+ declare const Code: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$J, "ref"> & React.RefAttributes<HTMLInputElement>>;
157
158
 
158
159
  type Never$1<T extends Record<string, any>> = {
159
160
  [K in keyof T]: never;
@@ -169,7 +170,7 @@ type ContainerAlignment$1 = {
169
170
  'vertical-alignment'?: FlexAlignment;
170
171
  'space-between'?: 'sm' | 'md' | 'lg';
171
172
  };
172
- type Props$H = {
173
+ type Props$I = {
173
174
  direction?: 'row' | 'column';
174
175
  shadow?: 'md' | 'lg' | 'xl' | '2xl';
175
176
  borderRadius?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl';
@@ -187,9 +188,9 @@ declare global {
187
188
  }
188
189
  }
189
190
  }
190
- declare const Container$1: React.ForwardRefExoticComponent<(Props$H & React.HTMLAttributes<HTMLDivElement>) & React.RefAttributes<HTMLDivElement>>;
191
+ declare const Container$1: React.ForwardRefExoticComponent<(Props$I & React.HTMLAttributes<HTMLDivElement>) & React.RefAttributes<HTMLDivElement>>;
191
192
 
192
- type Props$G = {
193
+ type Props$H = {
193
194
  vertical?: boolean;
194
195
  italic?: boolean;
195
196
  variant?: TypographyVariants;
@@ -199,15 +200,15 @@ type Props$G = {
199
200
  declare global {
200
201
  namespace React.JSX {
201
202
  interface IntrinsicElements {
202
- 'descope-divider': React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & Omit<Props$G, 'children'>;
203
+ 'descope-divider': React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & Omit<Props$H, 'children'>;
203
204
  }
204
205
  }
205
206
  }
206
- declare const Divider: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "size"> & Props$G, "ref"> & React.RefAttributes<HTMLDivElement>>;
207
+ declare const Divider: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "size"> & Props$H, "ref"> & React.RefAttributes<HTMLDivElement>>;
207
208
 
208
209
  declare const ReactComponent: (props: SVGProps) => React.JSX.Element;
209
210
 
210
- type Props$F = {
211
+ type Props$G = {
211
212
  width?: string;
212
213
  height?: string;
213
214
  alt?: string;
@@ -217,15 +218,15 @@ type Props$F = {
217
218
  declare global {
218
219
  namespace React.JSX {
219
220
  interface IntrinsicElements {
220
- 'descope-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$F;
221
+ 'descope-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$G;
221
222
  }
222
223
  }
223
224
  }
224
- declare const Image: React.ForwardRefExoticComponent<Props$F & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
225
+ declare const Image: React.ForwardRefExoticComponent<Props$G & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
225
226
 
226
227
  declare const Input: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
227
228
 
228
- type Props$E = {
229
+ type Props$F = {
229
230
  href?: string | undefined;
230
231
  italic?: boolean;
231
232
  variant?: TypographyVariants;
@@ -237,18 +238,18 @@ type Props$E = {
237
238
  declare global {
238
239
  namespace React.JSX {
239
240
  interface IntrinsicElements {
240
- 'descope-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> & Omit<Props$E, 'children'>;
241
+ 'descope-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> & Omit<Props$F, 'children'>;
241
242
  }
242
243
  }
243
244
  }
244
- declare const Link: React.ForwardRefExoticComponent<Props$E & React.RefAttributes<HTMLAnchorElement>>;
245
+ declare const Link: React.ForwardRefExoticComponent<Props$F & React.RefAttributes<HTMLAnchorElement>>;
245
246
 
246
- type Props$D = {
247
+ type Props$E = {
247
248
  variant?: 'linear' | 'radial';
248
249
  size?: 'xs' | 'sm' | 'md' | 'lg';
249
250
  color?: Mode;
250
251
  };
251
- type LoaderType = React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$D>;
252
+ type LoaderType = React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$E>;
252
253
  declare global {
253
254
  namespace React.JSX {
254
255
  interface IntrinsicElements {
@@ -257,22 +258,22 @@ declare global {
257
258
  }
258
259
  }
259
260
  }
260
- declare const Loader: React.ForwardRefExoticComponent<Props$D & React.RefAttributes<HTMLDivElement>>;
261
+ declare const Loader: React.ForwardRefExoticComponent<Props$E & React.RefAttributes<HTMLDivElement>>;
261
262
 
262
- type Props$C = {
263
+ type Props$D = {
263
264
  width?: string;
264
265
  height?: string;
265
266
  };
266
267
  declare global {
267
268
  namespace React.JSX {
268
269
  interface IntrinsicElements {
269
- 'descope-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$C>;
270
+ 'descope-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$D>;
270
271
  }
271
272
  }
272
273
  }
273
- declare const Logo: React.ForwardRefExoticComponent<Props$C & React.RefAttributes<HTMLDivElement>>;
274
+ declare const Logo: React.ForwardRefExoticComponent<Props$D & React.RefAttributes<HTMLDivElement>>;
274
275
 
275
- type Props$B = {
276
+ type Props$C = {
276
277
  'password-label'?: string;
277
278
  'password-placeholder'?: string;
278
279
  'confirm-label'?: string;
@@ -299,11 +300,11 @@ type Props$B = {
299
300
  declare global {
300
301
  namespace React.JSX {
301
302
  interface IntrinsicElements {
302
- 'descope-new-password': DescopeInputProps & Props$B;
303
+ 'descope-new-password': DescopeInputProps & Props$C;
303
304
  }
304
305
  }
305
306
  }
306
- declare const NewPassword: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$B, "ref"> & React.RefAttributes<HTMLInputElement>>;
307
+ declare const NewPassword: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$C, "ref"> & React.RefAttributes<HTMLInputElement>>;
307
308
 
308
309
  declare global {
309
310
  namespace React.JSX {
@@ -323,7 +324,7 @@ declare global {
323
324
  }
324
325
  declare const Password: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
325
326
 
326
- type Props$A = {
327
+ type Props$B = {
327
328
  variant: 'countrySelection' | 'inputBox';
328
329
  'default-code'?: string;
329
330
  'phone-input-placeholder'?: string;
@@ -332,9 +333,9 @@ type Props$A = {
332
333
  'format-value'?: boolean;
333
334
  'strict-validation'?: boolean;
334
335
  } & DescopeInputProps;
335
- declare const Phone: React.ForwardRefExoticComponent<Omit<Props$A, "ref"> & React.RefAttributes<HTMLInputElement>>;
336
+ declare const Phone: React.ForwardRefExoticComponent<Omit<Props$B, "ref"> & React.RefAttributes<HTMLInputElement>>;
336
337
 
337
- type Props$z = {
338
+ type Props$A = {
338
339
  children?: React.JSX.Element[];
339
340
  data?: string | Record<string, string>[];
340
341
  };
@@ -347,9 +348,9 @@ declare global {
347
348
  }
348
349
  }
349
350
  }
350
- declare const Select: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$z, "ref"> & React.RefAttributes<HTMLInputElement>>;
351
+ declare const Select: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$A, "ref"> & React.RefAttributes<HTMLInputElement>>;
351
352
 
352
- type Props$y = {
353
+ type Props$z = {
353
354
  italic?: boolean;
354
355
  variant?: string;
355
356
  mode?: string;
@@ -361,14 +362,14 @@ type Props$y = {
361
362
  declare global {
362
363
  namespace React.JSX {
363
364
  interface IntrinsicElements {
364
- 'descope-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$y;
365
- 'descope-enriched-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$y & {
365
+ 'descope-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$z;
366
+ 'descope-enriched-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$z & {
366
367
  readonly?: boolean;
367
368
  };
368
369
  }
369
370
  }
370
371
  }
371
- declare const Text: React.ForwardRefExoticComponent<Omit<Props$y & {
372
+ declare const Text: React.ForwardRefExoticComponent<Omit<Props$z & {
372
373
  typography?: TypographyVariants;
373
374
  } & Omit<React.HTMLProps<HTMLSpanElement>, "mode">, "ref"> & React.RefAttributes<HTMLElement>>;
374
375
 
@@ -390,39 +391,39 @@ declare global {
390
391
  }
391
392
  declare const TextField: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
392
393
 
393
- type Props$x = {
394
+ type Props$y = {
394
395
  width?: string;
395
396
  height?: string;
396
397
  };
397
398
  declare global {
398
399
  namespace React.JSX {
399
400
  interface IntrinsicElements {
400
- 'descope-totp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$x>;
401
+ 'descope-totp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$y>;
401
402
  }
402
403
  }
403
404
  }
404
- declare const TOTPImage: React.ForwardRefExoticComponent<Props$x & React.RefAttributes<HTMLDivElement>>;
405
+ declare const TOTPImage: React.ForwardRefExoticComponent<Props$y & React.RefAttributes<HTMLDivElement>>;
405
406
 
406
- type Props$w = Omit<React.ComponentProps<typeof Link>, 'href'>;
407
- declare const TOTPLink: React.ForwardRefExoticComponent<Omit<Props$w, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
407
+ type Props$x = Omit<React.ComponentProps<typeof Link>, 'href'>;
408
+ declare const TOTPLink: React.ForwardRefExoticComponent<Omit<Props$x, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
408
409
 
409
- type Props$v = {
410
+ type Props$w = {
410
411
  width?: string;
411
412
  height?: string;
412
413
  };
413
414
  declare global {
414
415
  namespace React.JSX {
415
416
  interface IntrinsicElements {
416
- 'descope-notp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$v>;
417
+ 'descope-notp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$w>;
417
418
  }
418
419
  }
419
420
  }
420
- declare const NOTPImage: React.ForwardRefExoticComponent<Props$v & React.RefAttributes<HTMLDivElement>>;
421
+ declare const NOTPImage: React.ForwardRefExoticComponent<Props$w & React.RefAttributes<HTMLDivElement>>;
421
422
 
422
- type Props$u = Omit<React.ComponentProps<typeof Link>, 'href'>;
423
- declare const NOTPLink: React.ForwardRefExoticComponent<Omit<Props$u, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
423
+ type Props$v = Omit<React.ComponentProps<typeof Link>, 'href'>;
424
+ declare const NOTPLink: React.ForwardRefExoticComponent<Omit<Props$v, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
424
425
 
425
- type Props$t = {
426
+ type Props$u = {
426
427
  title?: string;
427
428
  description?: string;
428
429
  icon?: string;
@@ -441,13 +442,13 @@ type Props$t = {
441
442
  declare global {
442
443
  namespace React.JSX {
443
444
  interface IntrinsicElements {
444
- 'descope-upload-file': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$t;
445
+ 'descope-upload-file': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$u;
445
446
  }
446
447
  }
447
448
  }
448
- declare const UploadFile: React.ForwardRefExoticComponent<Props$t & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
449
+ declare const UploadFile: React.ForwardRefExoticComponent<Props$u & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
449
450
 
450
- type Props$s = {
451
+ type Props$t = {
451
452
  enabled?: boolean;
452
453
  'site-key'?: string;
453
454
  enterprise?: boolean;
@@ -466,13 +467,13 @@ declare global {
466
467
  }
467
468
  namespace React.JSX {
468
469
  interface IntrinsicElements {
469
- 'descope-recaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$s;
470
+ 'descope-recaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$t;
470
471
  }
471
472
  }
472
473
  }
473
- declare const Recaptcha: React.ForwardRefExoticComponent<Props$s & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
474
+ declare const Recaptcha: React.ForwardRefExoticComponent<Props$t & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
474
475
 
475
- type Props$r = {
476
+ type Props$s = {
476
477
  connector?: string;
477
478
  enterprise?: boolean;
478
479
  action?: string;
@@ -483,16 +484,16 @@ type Props$r = {
483
484
  'full-width'?: boolean;
484
485
  readOnly?: boolean;
485
486
  };
486
- declare const RecaptchaV2: React.ForwardRefExoticComponent<Props$r & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
487
+ declare const RecaptchaV2: React.ForwardRefExoticComponent<Props$s & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
487
488
 
488
- type Props$q = DescopeInputProps & {
489
+ type Props$r = DescopeInputProps & {
489
490
  'default-value'?: string;
490
491
  'allow-deselect'?: boolean;
491
492
  };
492
493
  declare global {
493
494
  namespace React.JSX {
494
495
  interface IntrinsicElements {
495
- 'descope-button-selection-group': Props$q;
496
+ 'descope-button-selection-group': Props$r;
496
497
  'descope-button-selection-group-item': React.JSX.IntrinsicElements['span'] & {
497
498
  value: string;
498
499
  children: string;
@@ -518,10 +519,10 @@ type SingleSelectType = {
518
519
  layout?: 'horizontal' | 'vertical';
519
520
  'label-type'?: LabelType;
520
521
  };
521
- type Props$p = Omit<React.ComponentProps<typeof ButtonSelectionGroup>, 'allow-deselect'> & SingleSelectType;
522
- declare const SingleSelect: React.ForwardRefExoticComponent<Omit<Props$p, "ref"> & React.RefAttributes<HTMLInputElement>>;
522
+ type Props$q = Omit<React.ComponentProps<typeof ButtonSelectionGroup>, 'allow-deselect'> & SingleSelectType;
523
+ declare const SingleSelect: React.ForwardRefExoticComponent<Omit<Props$q, "ref"> & React.RefAttributes<HTMLInputElement>>;
523
524
 
524
- type Props$o = DescopeInputProps & {
525
+ type Props$p = DescopeInputProps & {
525
526
  'default-value'?: string;
526
527
  'item-label-path'?: string;
527
528
  'item-value-path'?: string;
@@ -529,7 +530,7 @@ type Props$o = DescopeInputProps & {
529
530
  declare global {
530
531
  namespace React.JSX {
531
532
  interface IntrinsicElements {
532
- 'descope-combobox': Props$o;
533
+ 'descope-combobox': Props$p;
533
534
  }
534
535
  }
535
536
  }
@@ -551,7 +552,7 @@ type Column = {
551
552
  resizable: boolean;
552
553
  };
553
554
  };
554
- type Props$n = {
555
+ type Props$o = {
555
556
  identifier: any;
556
557
  children?: React.JSX.Element[];
557
558
  size?: Omit<ComponentSize, 'xl'>;
@@ -567,7 +568,7 @@ declare global {
567
568
  }
568
569
  }
569
570
  }
570
- declare const Grid: React.ForwardRefExoticComponent<Props$n & React.RefAttributes<HTMLInputElement>>;
571
+ declare const Grid: React.ForwardRefExoticComponent<Props$o & React.RefAttributes<HTMLInputElement>>;
571
572
 
572
573
  type ColumnProps = {
573
574
  sortable?: boolean;
@@ -616,7 +617,7 @@ declare global {
616
617
  }
617
618
  declare const GridItemDetailsColumn: React.ForwardRefExoticComponent<ColumnProps & React.RefAttributes<HTMLInputElement>>;
618
619
 
619
- type Props$m = {
620
+ type Props$n = {
620
621
  mode?: string;
621
622
  size?: string;
622
623
  bordered?: boolean;
@@ -625,11 +626,11 @@ type Props$m = {
625
626
  declare global {
626
627
  namespace React.JSX {
627
628
  interface IntrinsicElements {
628
- 'descope-badge': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$m;
629
+ 'descope-badge': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$n;
629
630
  }
630
631
  }
631
632
  }
632
- declare const Badge: React.ForwardRefExoticComponent<Props$m & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
633
+ declare const Badge: React.ForwardRefExoticComponent<Props$n & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
633
634
 
634
635
  declare global {
635
636
  namespace React.JSX {
@@ -638,12 +639,12 @@ declare global {
638
639
  }
639
640
  }
640
641
  }
641
- type Props$l = {
642
+ type Props$m = {
642
643
  opened?: boolean;
643
644
  };
644
- declare const Modal: React.ForwardRefExoticComponent<Props$l & React.RefAttributes<HTMLDivElement>>;
645
+ declare const Modal: React.ForwardRefExoticComponent<Props$m & React.RefAttributes<HTMLDivElement>>;
645
646
 
646
- type Props$k = DescopeInputProps & {
647
+ type Props$l = DescopeInputProps & {
647
648
  size?: 'xs' | 'sm' | 'md' | 'lg';
648
649
  'min-items-selection'?: number;
649
650
  'max-items-selection'?: number;
@@ -651,7 +652,7 @@ type Props$k = DescopeInputProps & {
651
652
  declare global {
652
653
  namespace React.JSX {
653
654
  interface IntrinsicElements {
654
- 'descope-button-multi-selection-group': Props$k & {
655
+ 'descope-button-multi-selection-group': Props$l & {
655
656
  'default-values'?: string;
656
657
  };
657
658
  'descope-button-selection-group-item': React.JSX.IntrinsicElements['span'] & {
@@ -678,16 +679,16 @@ type MultiSelectType = {
678
679
  'max-items-selection'?: number;
679
680
  'label-type'?: string;
680
681
  };
681
- type Props$j = Omit<React.ComponentProps<typeof ButtonMultiSelectionGroup>, 'default-values'> & MultiSelectType & {
682
+ type Props$k = Omit<React.ComponentProps<typeof ButtonMultiSelectionGroup>, 'default-values'> & MultiSelectType & {
682
683
  'default-values'?: string[];
683
684
  };
684
- declare const MultiSelect: React.ForwardRefExoticComponent<Omit<Props$j, "ref"> & React.RefAttributes<HTMLInputElement>>;
685
+ declare const MultiSelect: React.ForwardRefExoticComponent<Omit<Props$k, "ref"> & React.RefAttributes<HTMLInputElement>>;
685
686
 
686
687
  type Item$3 = {
687
688
  label: string;
688
689
  value: string;
689
690
  };
690
- type Props$i = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'helper-text' | 'data-errormessage-pattern-mismatch' | 'data-errormessage-value-missing'> & {
691
+ type Props$j = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'helper-text' | 'data-errormessage-pattern-mismatch' | 'data-errormessage-value-missing'> & {
691
692
  'label-value'?: string;
692
693
  'label-attr'?: string;
693
694
  'button-label'?: string;
@@ -699,20 +700,20 @@ type Props$i = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'h
699
700
  declare global {
700
701
  namespace React.JSX {
701
702
  interface IntrinsicElements {
702
- 'descope-mappings-field': Omit<Props$i, 'default-values' | 'options'> & {
703
+ 'descope-mappings-field': Omit<Props$j, 'default-values' | 'options'> & {
703
704
  'default-values'?: string;
704
705
  options?: string;
705
706
  };
706
707
  }
707
708
  }
708
709
  }
709
- declare const MappingsField: React.ForwardRefExoticComponent<Omit<Props$i, "ref"> & React.RefAttributes<HTMLInputElement>>;
710
+ declare const MappingsField: React.ForwardRefExoticComponent<Omit<Props$j, "ref"> & React.RefAttributes<HTMLInputElement>>;
710
711
 
711
712
  type Item$2 = {
712
713
  label: string;
713
714
  value: string;
714
715
  };
715
- type Props$h = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'helper-text' | 'data-errormessage-pattern-mismatch' | 'data-errormessage-value-missing'> & {
716
+ type Props$i = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'helper-text' | 'data-errormessage-pattern-mismatch' | 'data-errormessage-value-missing'> & {
716
717
  'label-value'?: string;
717
718
  'label-attr'?: string;
718
719
  'label-group'?: string;
@@ -724,13 +725,13 @@ type Props$h = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'h
724
725
  declare global {
725
726
  namespace React.JSX {
726
727
  interface IntrinsicElements {
727
- 'descope-saml-group-mappings': Omit<Props$h, 'options'> & {
728
+ 'descope-saml-group-mappings': Omit<Props$i, 'options'> & {
728
729
  options?: string;
729
730
  };
730
731
  }
731
732
  }
732
733
  }
733
- declare const SAMLGroupMappings: React.ForwardRefExoticComponent<Omit<Props$h, "ref"> & React.RefAttributes<HTMLInputElement>>;
734
+ declare const SAMLGroupMappings: React.ForwardRefExoticComponent<Omit<Props$i, "ref"> & React.RefAttributes<HTMLInputElement>>;
734
735
 
735
736
  declare global {
736
737
  namespace React.JSX {
@@ -751,7 +752,7 @@ declare const UserAuthMethod: React.ForwardRefExoticComponent<Omit<React.ClassAt
751
752
  buttonIcon?: string;
752
753
  }, "ref"> & React.RefAttributes<HTMLButtonElement>>;
753
754
 
754
- type Props$g = {
755
+ type Props$h = {
755
756
  'badge-tooltip-text'?: string;
756
757
  'badge-label'?: string;
757
758
  value?: string;
@@ -763,13 +764,13 @@ type Props$g = {
763
764
  declare global {
764
765
  namespace React.JSX {
765
766
  interface IntrinsicElements {
766
- 'descope-user-attribute': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$g;
767
+ 'descope-user-attribute': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$h;
767
768
  }
768
769
  }
769
770
  }
770
- declare const UserAttribute: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$g, "ref"> & React.RefAttributes<HTMLButtonElement>>;
771
+ declare const UserAttribute: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$h, "ref"> & React.RefAttributes<HTMLButtonElement>>;
771
772
 
772
- type Props$f = {
773
+ type Props$g = {
773
774
  img?: string;
774
775
  'display-name'?: string;
775
776
  size?: string;
@@ -778,26 +779,26 @@ type Props$f = {
778
779
  declare global {
779
780
  namespace React.JSX {
780
781
  interface IntrinsicElements {
781
- 'descope-avatar': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$f;
782
+ 'descope-avatar': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$g;
782
783
  }
783
784
  }
784
785
  }
785
- declare const Avatar: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$f, "ref"> & React.RefAttributes<HTMLButtonElement>>;
786
+ declare const Avatar: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$g, "ref"> & React.RefAttributes<HTMLButtonElement>>;
786
787
 
787
- type Props$e = {
788
+ type Props$f = {
788
789
  lang?: 'xml' | 'html' | 'javascript' | 'css' | 'json';
789
790
  inline?: boolean;
790
791
  };
791
792
  declare global {
792
793
  namespace React.JSX {
793
794
  interface IntrinsicElements {
794
- 'descope-code-snippet': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$e;
795
+ 'descope-code-snippet': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$f;
795
796
  }
796
797
  }
797
798
  }
798
- declare const CodeSnippet: React.ForwardRefExoticComponent<Props$e & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
799
+ declare const CodeSnippet: React.ForwardRefExoticComponent<Props$f & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
799
800
 
800
- type Props$d = {
801
+ type Props$e = {
801
802
  emptyState?: React.ReactNode;
802
803
  children?: React.ReactNode[];
803
804
  variant?: 'list' | 'tiles';
@@ -805,26 +806,26 @@ type Props$d = {
805
806
  declare global {
806
807
  namespace React.JSX {
807
808
  interface IntrinsicElements {
808
- 'descope-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$d>;
809
+ 'descope-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$e>;
809
810
  }
810
811
  }
811
812
  }
812
- declare const List: React.ForwardRefExoticComponent<Props$d & React.RefAttributes<HTMLDivElement>>;
813
+ declare const List: React.ForwardRefExoticComponent<Props$e & React.RefAttributes<HTMLDivElement>>;
813
814
 
814
- type Props$c = {
815
+ type Props$d = {
815
816
  variant?: 'row' | 'tile';
816
817
  children?: React.ReactNode;
817
818
  };
818
819
  declare global {
819
820
  namespace React.JSX {
820
821
  interface IntrinsicElements {
821
- 'descope-list-item': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$c>;
822
+ 'descope-list-item': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$d>;
822
823
  }
823
824
  }
824
825
  }
825
- declare const ListItem: React.ForwardRefExoticComponent<Props$c & React.RefAttributes<HTMLDivElement>>;
826
+ declare const ListItem: React.ForwardRefExoticComponent<Props$d & React.RefAttributes<HTMLDivElement>>;
826
827
 
827
- type Props$b = {
828
+ type Props$c = {
828
829
  emptyState?: React.ReactNode;
829
830
  variant?: 'list' | 'tiles';
830
831
  data?: any[];
@@ -833,18 +834,18 @@ type Props$b = {
833
834
  declare global {
834
835
  namespace React.JSX {
835
836
  interface IntrinsicElements {
836
- 'descope-apps-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$b>;
837
+ 'descope-apps-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$c>;
837
838
  }
838
839
  }
839
840
  }
840
- declare const AppsList: React.ForwardRefExoticComponent<Props$b & React.RefAttributes<HTMLDivElement>>;
841
+ declare const AppsList: React.ForwardRefExoticComponent<Props$c & React.RefAttributes<HTMLDivElement>>;
841
842
 
842
843
  type Item$1 = {
843
844
  desc: string;
844
845
  id: string;
845
846
  required?: boolean;
846
847
  };
847
- type Props$a = {
848
+ type Props$b = {
848
849
  variant?: 'checkbox' | 'switch';
849
850
  data?: Item$1[];
850
851
  readonly?: boolean;
@@ -853,17 +854,17 @@ type Props$a = {
853
854
  declare global {
854
855
  namespace React.JSX {
855
856
  interface IntrinsicElements {
856
- 'descope-scopes-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$a>;
857
+ 'descope-scopes-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$b>;
857
858
  }
858
859
  }
859
860
  }
860
- declare const ScopesList: React.ForwardRefExoticComponent<Props$a & React.RefAttributes<HTMLDivElement>>;
861
+ declare const ScopesList: React.ForwardRefExoticComponent<Props$b & React.RefAttributes<HTMLDivElement>>;
861
862
 
862
863
  type Question$1 = {
863
864
  id: string;
864
865
  text: string;
865
866
  };
866
- type Props$9 = {
867
+ type Props$a = {
867
868
  questions?: Question$1[];
868
869
  readonly?: boolean;
869
870
  size?: 'xs' | 'sm' | 'md' | 'lg';
@@ -878,17 +879,17 @@ type Props$9 = {
878
879
  declare global {
879
880
  namespace React.JSX {
880
881
  interface IntrinsicElements {
881
- 'descope-security-questions-setup': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$9>;
882
+ 'descope-security-questions-setup': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$a>;
882
883
  }
883
884
  }
884
885
  }
885
- declare const SecurityQuestionsSetup: React.ForwardRefExoticComponent<Props$9 & React.RefAttributes<HTMLDivElement>>;
886
+ declare const SecurityQuestionsSetup: React.ForwardRefExoticComponent<Props$a & React.RefAttributes<HTMLDivElement>>;
886
887
 
887
888
  type Question = {
888
889
  id: string;
889
890
  text: string;
890
891
  };
891
- type Props$8 = {
892
+ type Props$9 = {
892
893
  questions?: Question[];
893
894
  readonly?: boolean;
894
895
  size?: 'xs' | 'sm' | 'md' | 'lg';
@@ -902,23 +903,23 @@ type Props$8 = {
902
903
  declare global {
903
904
  namespace React.JSX {
904
905
  interface IntrinsicElements {
905
- 'descope-security-questions-verify': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$8>;
906
+ 'descope-security-questions-verify': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$9>;
906
907
  }
907
908
  }
908
909
  }
909
- declare const SecurityQuestionsVerify: React.ForwardRefExoticComponent<Props$8 & React.RefAttributes<HTMLDivElement>>;
910
+ declare const SecurityQuestionsVerify: React.ForwardRefExoticComponent<Props$9 & React.RefAttributes<HTMLDivElement>>;
910
911
 
911
- type Props$7 = {
912
+ type Props$8 = {
912
913
  size: 'xs' | 'sm' | 'md' | 'lg';
913
914
  };
914
915
  declare global {
915
916
  namespace React.JSX {
916
917
  interface IntrinsicElements {
917
- 'descope-third-party-app-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$7>;
918
+ 'descope-third-party-app-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$8>;
918
919
  }
919
920
  }
920
921
  }
921
- declare const ThirdPartyAppLogo: React.ForwardRefExoticComponent<Props$7 & React.RefAttributes<HTMLDivElement>>;
922
+ declare const ThirdPartyAppLogo: React.ForwardRefExoticComponent<Props$8 & React.RefAttributes<HTMLDivElement>>;
922
923
 
923
924
  declare global {
924
925
  namespace React.JSX {
@@ -929,7 +930,7 @@ declare global {
929
930
  }
930
931
  declare const DateField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input">, "ref"> & React.RefAttributes<HTMLInputElement>>;
931
932
 
932
- type Props$6 = {
933
+ type Props$7 = {
933
934
  variant?: 'countrySelection' | 'inputBox';
934
935
  'default-code'?: string;
935
936
  'phone-input-label'?: string;
@@ -950,7 +951,7 @@ type Props$6 = {
950
951
  declare global {
951
952
  namespace React.JSX {
952
953
  interface IntrinsicElements {
953
- 'descope-hybrid-field': React.DetailedHTMLProps<React.HTMLAttributes<HTMLInputElement>, HTMLInputElement> & PropsToAttrs<Props$6>;
954
+ 'descope-hybrid-field': React.DetailedHTMLProps<React.HTMLAttributes<HTMLInputElement>, HTMLInputElement> & PropsToAttrs<Props$7>;
954
955
  }
955
956
  }
956
957
  }
@@ -973,7 +974,7 @@ declare const HybridField: React.ForwardRefExoticComponent<Omit<React.ClassAttri
973
974
  'external-input'?: boolean;
974
975
  } & HTMLInputAttrs & DescopeInputExtraProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
975
976
 
976
- type Props$5 = {
977
+ type Props$6 = {
977
978
  mode?: string;
978
979
  variant?: string;
979
980
  bordered?: boolean;
@@ -985,13 +986,13 @@ type Props$5 = {
985
986
  declare global {
986
987
  namespace React.JSX {
987
988
  interface IntrinsicElements {
988
- 'descope-alert': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$5;
989
+ 'descope-alert': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$6;
989
990
  }
990
991
  }
991
992
  }
992
- declare const Alert: React.ForwardRefExoticComponent<Props$5 & React.RefAttributes<HTMLElement>>;
993
+ declare const Alert: React.ForwardRefExoticComponent<Props$6 & React.RefAttributes<HTMLElement>>;
993
994
 
994
- type Props$4 = {
995
+ type Props$5 = {
995
996
  'data-connector-id'?: string;
996
997
  'connector-template'?: string;
997
998
  'min-search-length'?: number;
@@ -1000,13 +1001,13 @@ type Props$4 = {
1000
1001
  declare global {
1001
1002
  namespace React.JSX {
1002
1003
  interface IntrinsicElements {
1003
- 'descope-address-field': Omit<DescopeInputProps, 'external-input'> & Props$4;
1004
+ 'descope-address-field': Omit<DescopeInputProps, 'external-input'> & Props$5;
1004
1005
  }
1005
1006
  }
1006
1007
  }
1007
- declare const AddressField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input"> & Props$4, "ref"> & React.RefAttributes<HTMLInputElement>>;
1008
+ declare const AddressField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input"> & Props$5, "ref"> & React.RefAttributes<HTMLInputElement>>;
1008
1009
 
1009
- type Props$3 = React.JSX.IntrinsicElements['button'] & {
1010
+ type Props$4 = React.JSX.IntrinsicElements['button'] & {
1010
1011
  variant?: string;
1011
1012
  color?: string;
1012
1013
  size?: string;
@@ -1020,7 +1021,7 @@ type Props$3 = React.JSX.IntrinsicElements['button'] & {
1020
1021
  declare global {
1021
1022
  namespace React.JSX {
1022
1023
  interface IntrinsicElements {
1023
- 'descope-timer-button': React.DetailedHTMLProps<React.HTMLAttributes<HTMLButtonElement>, HTMLButtonElement> & Props$3;
1024
+ 'descope-timer-button': React.DetailedHTMLProps<React.HTMLAttributes<HTMLButtonElement>, HTMLButtonElement> & Props$4;
1024
1025
  }
1025
1026
  }
1026
1027
  }
@@ -1048,7 +1049,7 @@ type ContainerAlignment = {
1048
1049
  'vertical-alignment'?: FlexAlignment;
1049
1050
  'space-between'?: 'sm' | 'md' | 'lg';
1050
1051
  };
1051
- type Props$2 = {
1052
+ type Props$3 = {
1052
1053
  shadow?: 'md' | 'lg' | 'xl' | '2xl';
1053
1054
  borderRadius?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl';
1054
1055
  paddingX?: string;
@@ -1074,9 +1075,9 @@ declare global {
1074
1075
  }
1075
1076
  }
1076
1077
  }
1077
- declare const Container: React.ForwardRefExoticComponent<(Props$2 & React.HTMLAttributes<HTMLDivElement>) & React.RefAttributes<HTMLDivElement>>;
1078
+ declare const Container: React.ForwardRefExoticComponent<(Props$3 & React.HTMLAttributes<HTMLDivElement>) & React.RefAttributes<HTMLDivElement>>;
1078
1079
 
1079
- type Props$1 = {
1080
+ type Props$2 = {
1080
1081
  connector?: string;
1081
1082
  action?: string;
1082
1083
  textLabel?: string;
@@ -1085,12 +1086,12 @@ type Props$1 = {
1085
1086
  textAlign?: TextAlign;
1086
1087
  'full-width'?: boolean;
1087
1088
  };
1088
- declare const Turnstile: React.ForwardRefExoticComponent<Props$1 & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
1089
+ declare const Turnstile: React.ForwardRefExoticComponent<Props$2 & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
1089
1090
 
1090
1091
  type Item = {
1091
1092
  value: string;
1092
1093
  };
1093
- type Props = {
1094
+ type Props$1 = {
1094
1095
  variant?: string;
1095
1096
  mode?: string;
1096
1097
  'text-align': TextAlign;
@@ -1100,11 +1101,24 @@ type Props = {
1100
1101
  declare global {
1101
1102
  namespace React.JSX {
1102
1103
  interface IntrinsicElements {
1103
- 'descope-recovery-codes': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props>;
1104
+ 'descope-recovery-codes': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$1>;
1105
+ }
1106
+ }
1107
+ }
1108
+ declare const RecoveryCodesList: React.ForwardRefExoticComponent<Props$1 & React.RefAttributes<HTMLDivElement>>;
1109
+
1110
+ declare global {
1111
+ namespace React.JSX {
1112
+ interface IntrinsicElements {
1113
+ 'descope-hcaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props;
1104
1114
  }
1105
1115
  }
1106
1116
  }
1107
- declare const RecoveryCodesList: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>;
1117
+ type Props = {
1118
+ connector?: string;
1119
+ enabled?: boolean;
1120
+ };
1121
+ declare const Hcaptcha: React.ForwardRefExoticComponent<Props & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
1108
1122
 
1109
1123
  interface IComponentThemeManager {
1110
1124
  currentThemeName: string;
@@ -1151,4 +1165,4 @@ type Theme = {
1151
1165
  };
1152
1166
  };
1153
1167
 
1154
- export { AddressField, AddressFieldClass, Alert, AlertClass, AppsList, AppsListClass, Avatar, AvatarClass, Badge, BadgeClass, Boolean, Button, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, Checkbox, CheckboxClass, Code, CodeSnippet, CodeSnippetClass, Container as CollapsibleContainer, CollapsibleContainerClass, ComboBox, ComboBoxClass, Container$1 as Container, ContainerClass, DateField, DateFieldClass, Divider, DividerClass, EmailFieldClass, EnrichedTextClass, Grid, GridClass, GridCustomColumn, GridItemDetailsColumn, GridSelectionColumn, GridTextColumn, HybridField, HybridFieldClass, IconClass, Image, ImageClass, Input, Link, LinkClass, List, ListClass, ListItem, Loader, LoaderLinearClass, LoaderRadialClass, Logo, LogoClass, MappingsField, MappingsFieldClass, Modal, ModalClass, MultiSelect, MultiSelectComboBoxClass, NOTPImage, NOTPLink, NewPassword, NewPasswordClass, NotificationClass, NotpImageClass, NumberField, NumberFieldClass, PasscodeClass, Password, PasswordClass, Phone, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, Recaptcha, RecaptchaClass, RecaptchaV2, RecoveryCodesList, RecoveryCodesListClass, SAMLGroupMappings, SamlGroupMappingsClass, ScopesList, ScopesListClass, SecurityQuestionsSetup, SecurityQuestionsSetupClass, SecurityQuestionsVerify, SecurityQuestionsVerifyClass, Select, SingleSelect, Switch, SwitchToggleClass, TOTPImage, TOTPLink, Text, TextAreaClass, TextClass, TextField, TextFieldClass, Textarea, type Theme, ThirdPartyAppLogo, ThirdPartyAppLogoClass, TimerButton, TimerButtonClass, TotpImageClass, Turnstile, UploadFile, UploadFileClass, UserAttribute, UserAttributeClass, UserAuthMethod, UserAuthMethodClass, ReactComponent as apple, ReactComponent as authenticator, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, ReactComponent as discord, ReactComponent as edit, ReactComponent as facebook, ReactComponent as fingerprint, genColor, ReactComponent as github, ReactComponent as gitlab, globalsThemeToStyle, ReactComponent as google, ReactComponent as linkedin, ReactComponent as lock, ReactComponent as microsoft, ReactComponent as passkey, ReactComponent as password, ReactComponent as plus, ReactComponent as reload, ReactComponent as slack, ReactComponent as sso, themeToStyle, themeVars, ReactComponent as whatsapp };
1168
+ export { AddressField, AddressFieldClass, Alert, AlertClass, AppsList, AppsListClass, Avatar, AvatarClass, Badge, BadgeClass, Boolean, Button, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, Checkbox, CheckboxClass, Code, CodeSnippet, CodeSnippetClass, Container as CollapsibleContainer, CollapsibleContainerClass, ComboBox, ComboBoxClass, Container$1 as Container, ContainerClass, DateField, DateFieldClass, Divider, DividerClass, EmailFieldClass, EnrichedTextClass, Grid, GridClass, GridCustomColumn, GridItemDetailsColumn, GridSelectionColumn, GridTextColumn, Hcaptcha, HcaptchaClass, HybridField, HybridFieldClass, IconClass, Image, ImageClass, Input, Link, LinkClass, List, ListClass, ListItem, Loader, LoaderLinearClass, LoaderRadialClass, Logo, LogoClass, MappingsField, MappingsFieldClass, Modal, ModalClass, MultiSelect, MultiSelectComboBoxClass, NOTPImage, NOTPLink, NewPassword, NewPasswordClass, NotificationClass, NotpImageClass, NumberField, NumberFieldClass, PasscodeClass, Password, PasswordClass, Phone, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, Recaptcha, RecaptchaClass, RecaptchaV2, RecoveryCodesList, RecoveryCodesListClass, SAMLGroupMappings, SamlGroupMappingsClass, ScopesList, ScopesListClass, SecurityQuestionsSetup, SecurityQuestionsSetupClass, SecurityQuestionsVerify, SecurityQuestionsVerifyClass, Select, SingleSelect, Switch, SwitchToggleClass, TOTPImage, TOTPLink, Text, TextAreaClass, TextClass, TextField, TextFieldClass, Textarea, type Theme, ThirdPartyAppLogo, ThirdPartyAppLogoClass, TimerButton, TimerButtonClass, TotpImageClass, Turnstile, UploadFile, UploadFileClass, UserAttribute, UserAttributeClass, UserAuthMethod, UserAuthMethodClass, ReactComponent as apple, ReactComponent as authenticator, componentsThemeManager, createComponentsTheme, darkTheme, defaultTheme, ReactComponent as discord, ReactComponent as edit, ReactComponent as facebook, ReactComponent as fingerprint, genColor, ReactComponent as github, ReactComponent as gitlab, globalsThemeToStyle, ReactComponent as google, ReactComponent as linkedin, ReactComponent as lock, ReactComponent as microsoft, ReactComponent as passkey, ReactComponent as password, ReactComponent as plus, ReactComponent as reload, ReactComponent as slack, ReactComponent as sso, themeToStyle, themeVars, ReactComponent as whatsapp };