@descope/flow-components 3.0.6 → 3.0.7
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/fm/119.js +2 -0
- package/dist/fm/119.js.map +1 -0
- package/dist/fm/222.js +1 -1
- package/dist/fm/222.js.map +1 -1
- package/dist/fm/467.js +1 -1
- package/dist/fm/467.js.map +1 -1
- package/dist/fm/985.js +1 -1
- package/dist/fm/985.js.map +1 -1
- package/dist/fm/@mf-types/compiled-types/CountrySubdivisionCityField/CountrySubdivisionCityField.d.ts +33 -0
- package/dist/fm/@mf-types/compiled-types/CountrySubdivisionCityField/index.d.ts +1 -0
- package/dist/fm/@mf-types/compiled-types/componentClasses.d.ts +1 -0
- package/dist/fm/@mf-types/compiled-types/components.d.ts +1 -0
- package/dist/fm/__federation_expose_componentClasses.js +1 -1
- package/dist/fm/__federation_expose_componentClasses.js.map +1 -1
- package/dist/fm/__federation_expose_components.js +1 -1
- package/dist/fm/__federation_expose_theme.js +1 -1
- package/dist/fm/__federation_expose_theme.js.map +1 -1
- package/dist/fm/flowComponents.js +1 -1
- package/dist/fm/flowComponents.js.map +1 -1
- package/dist/fm/main.js +1 -1
- package/dist/fm/main.js.map +1 -1
- package/dist/fm/mf-manifest.json +2 -2
- package/dist/fm/mf-stats.json +2 -2
- package/dist/index.cjs.js +1677 -641
- package/dist/index.d.ts +133 -101
- package/dist/index.esm.js +5 -2
- package/dist/types/CountrySubdivisionCityField/CountrySubdivisionCityField.d.ts +33 -0
- package/dist/types/CountrySubdivisionCityField/index.d.ts +1 -0
- package/dist/types/componentClasses.d.ts +1 -0
- package/dist/types/components.d.ts +1 -0
- package/package.json +2 -2
- package/dist/fm/626.js +0 -2
- package/dist/fm/626.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -63,6 +63,7 @@ declare const SecurityQuestionsVerifyClass: ComponentClass;
|
|
|
63
63
|
declare const HybridFieldClass: ComponentClass;
|
|
64
64
|
declare const AlertClass: ComponentClass;
|
|
65
65
|
declare const AddressFieldClass: ComponentClass;
|
|
66
|
+
declare const CountrySubdivisionCityFieldClass: ComponentClass;
|
|
66
67
|
declare const TimerButtonClass: ComponentClass;
|
|
67
68
|
declare const CollapsibleContainerClass: ComponentClass;
|
|
68
69
|
declare const RecoveryCodesClass: ComponentClass;
|
|
@@ -122,11 +123,11 @@ declare const Switch: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "r
|
|
|
122
123
|
type BooleanType = {
|
|
123
124
|
type: 'switch' | 'checkbox';
|
|
124
125
|
};
|
|
125
|
-
type Props$
|
|
126
|
-
declare const Boolean: React.ForwardRefExoticComponent<Omit<Props$
|
|
126
|
+
type Props$K = React.ComponentProps<typeof Checkbox> & React.ComponentProps<typeof Switch> & BooleanType;
|
|
127
|
+
declare const Boolean: React.ForwardRefExoticComponent<Omit<Props$K, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
127
128
|
|
|
128
129
|
type TooltipPosition = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'start' | 'start-top' | 'start-bottom' | 'end' | 'end-top' | 'end-bottom';
|
|
129
|
-
type Props$
|
|
130
|
+
type Props$J = {
|
|
130
131
|
text?: string;
|
|
131
132
|
position?: TooltipPosition;
|
|
132
133
|
hoverDelay?: number;
|
|
@@ -144,7 +145,7 @@ declare module 'react' {
|
|
|
144
145
|
declare global {
|
|
145
146
|
namespace React.JSX {
|
|
146
147
|
interface IntrinsicElements {
|
|
147
|
-
'descope-tooltip': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
148
|
+
'descope-tooltip': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$J;
|
|
148
149
|
}
|
|
149
150
|
}
|
|
150
151
|
}
|
|
@@ -185,17 +186,17 @@ declare const Button: React.ForwardRefExoticComponent<Omit<React.ClassAttributes
|
|
|
185
186
|
'data-name'?: string;
|
|
186
187
|
} & ITooltip, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
187
188
|
|
|
188
|
-
type Props$
|
|
189
|
+
type Props$I = {
|
|
189
190
|
digits?: number;
|
|
190
191
|
};
|
|
191
192
|
declare global {
|
|
192
193
|
namespace React.JSX {
|
|
193
194
|
interface IntrinsicElements {
|
|
194
|
-
'descope-passcode': DescopeInputProps & Props$
|
|
195
|
+
'descope-passcode': DescopeInputProps & Props$I;
|
|
195
196
|
}
|
|
196
197
|
}
|
|
197
198
|
}
|
|
198
|
-
declare const Code: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$
|
|
199
|
+
declare const Code: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$I, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
199
200
|
|
|
200
201
|
declare global {
|
|
201
202
|
namespace React.JSX {
|
|
@@ -206,7 +207,7 @@ declare global {
|
|
|
206
207
|
}
|
|
207
208
|
declare const Container$1: React.ForwardRefExoticComponent<any>;
|
|
208
209
|
|
|
209
|
-
type Props$
|
|
210
|
+
type Props$H = {
|
|
210
211
|
vertical?: boolean;
|
|
211
212
|
italic?: boolean;
|
|
212
213
|
variant?: TypographyVariants;
|
|
@@ -216,15 +217,15 @@ type Props$G = {
|
|
|
216
217
|
declare global {
|
|
217
218
|
namespace React.JSX {
|
|
218
219
|
interface IntrinsicElements {
|
|
219
|
-
'descope-divider': React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & Omit<Props$
|
|
220
|
+
'descope-divider': React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & Omit<Props$H, 'children'>;
|
|
220
221
|
}
|
|
221
222
|
}
|
|
222
223
|
}
|
|
223
|
-
declare const Divider: React.ForwardRefExoticComponent<Omit<Omit<any, "size"> & Props$
|
|
224
|
+
declare const Divider: React.ForwardRefExoticComponent<Omit<Omit<any, "size"> & Props$H, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
224
225
|
|
|
225
226
|
declare const ReactComponent: (props: SVGProps) => React.JSX.Element;
|
|
226
227
|
|
|
227
|
-
type Props$
|
|
228
|
+
type Props$G = {
|
|
228
229
|
width?: string;
|
|
229
230
|
height?: string;
|
|
230
231
|
alt?: string;
|
|
@@ -234,7 +235,7 @@ type Props$F = {
|
|
|
234
235
|
declare global {
|
|
235
236
|
namespace React.JSX {
|
|
236
237
|
interface IntrinsicElements {
|
|
237
|
-
'descope-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
238
|
+
'descope-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$G;
|
|
238
239
|
}
|
|
239
240
|
}
|
|
240
241
|
}
|
|
@@ -242,7 +243,7 @@ declare const Image: React.ForwardRefExoticComponent<any>;
|
|
|
242
243
|
|
|
243
244
|
declare const Input: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
244
245
|
|
|
245
|
-
type Props$
|
|
246
|
+
type Props$F = {
|
|
246
247
|
href?: string | undefined;
|
|
247
248
|
italic?: boolean;
|
|
248
249
|
variant?: TypographyVariants;
|
|
@@ -254,7 +255,7 @@ type Props$E = {
|
|
|
254
255
|
declare global {
|
|
255
256
|
namespace React.JSX {
|
|
256
257
|
interface IntrinsicElements {
|
|
257
|
-
'descope-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> & Omit<Props$
|
|
258
|
+
'descope-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> & Omit<Props$F, 'children'>;
|
|
258
259
|
}
|
|
259
260
|
}
|
|
260
261
|
}
|
|
@@ -268,12 +269,12 @@ declare const Link: React.ForwardRefExoticComponent<{
|
|
|
268
269
|
children?: React.ReactNode;
|
|
269
270
|
} & ITooltip & React.RefAttributes<HTMLAnchorElement>>;
|
|
270
271
|
|
|
271
|
-
type Props$
|
|
272
|
+
type Props$E = {
|
|
272
273
|
variant?: 'linear' | 'radial';
|
|
273
274
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
274
275
|
color?: Mode;
|
|
275
276
|
};
|
|
276
|
-
type LoaderType = React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
277
|
+
type LoaderType = React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$E>;
|
|
277
278
|
declare global {
|
|
278
279
|
namespace React.JSX {
|
|
279
280
|
interface IntrinsicElements {
|
|
@@ -282,22 +283,22 @@ declare global {
|
|
|
282
283
|
}
|
|
283
284
|
}
|
|
284
285
|
}
|
|
285
|
-
declare const Loader: React.ForwardRefExoticComponent<Props$
|
|
286
|
+
declare const Loader: React.ForwardRefExoticComponent<Props$E & React.RefAttributes<HTMLDivElement>>;
|
|
286
287
|
|
|
287
|
-
type Props$
|
|
288
|
+
type Props$D = {
|
|
288
289
|
width?: string;
|
|
289
290
|
height?: string;
|
|
290
291
|
};
|
|
291
292
|
declare global {
|
|
292
293
|
namespace React.JSX {
|
|
293
294
|
interface IntrinsicElements {
|
|
294
|
-
'descope-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
295
|
+
'descope-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$D>;
|
|
295
296
|
}
|
|
296
297
|
}
|
|
297
298
|
}
|
|
298
|
-
declare const Logo: React.ForwardRefExoticComponent<Props$
|
|
299
|
+
declare const Logo: React.ForwardRefExoticComponent<Props$D & React.RefAttributes<HTMLDivElement>>;
|
|
299
300
|
|
|
300
|
-
type Props$
|
|
301
|
+
type Props$C = {
|
|
301
302
|
'password-label'?: string;
|
|
302
303
|
'password-placeholder'?: string;
|
|
303
304
|
'confirm-label'?: string;
|
|
@@ -324,11 +325,11 @@ type Props$B = {
|
|
|
324
325
|
declare global {
|
|
325
326
|
namespace React.JSX {
|
|
326
327
|
interface IntrinsicElements {
|
|
327
|
-
'descope-new-password': DescopeInputProps & Props$
|
|
328
|
+
'descope-new-password': DescopeInputProps & Props$C;
|
|
328
329
|
}
|
|
329
330
|
}
|
|
330
331
|
}
|
|
331
|
-
declare const NewPassword: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$
|
|
332
|
+
declare const NewPassword: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$C, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
332
333
|
|
|
333
334
|
declare global {
|
|
334
335
|
namespace React.JSX {
|
|
@@ -348,7 +349,7 @@ declare global {
|
|
|
348
349
|
}
|
|
349
350
|
declare const Password: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
350
351
|
|
|
351
|
-
type Props$
|
|
352
|
+
type Props$B = {
|
|
352
353
|
variant: 'countrySelection' | 'inputBox';
|
|
353
354
|
'default-code'?: string;
|
|
354
355
|
'phone-input-placeholder'?: string;
|
|
@@ -357,9 +358,9 @@ type Props$A = {
|
|
|
357
358
|
'format-value'?: boolean;
|
|
358
359
|
'strict-validation'?: boolean;
|
|
359
360
|
} & DescopeInputProps;
|
|
360
|
-
declare const Phone: React.ForwardRefExoticComponent<Omit<Props$
|
|
361
|
+
declare const Phone: React.ForwardRefExoticComponent<Omit<Props$B, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
361
362
|
|
|
362
|
-
type Props$
|
|
363
|
+
type Props$A = {
|
|
363
364
|
children?: React.JSX.Element[];
|
|
364
365
|
data?: string | Record<string, string>[];
|
|
365
366
|
};
|
|
@@ -372,9 +373,9 @@ declare global {
|
|
|
372
373
|
}
|
|
373
374
|
}
|
|
374
375
|
}
|
|
375
|
-
declare const Select: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$
|
|
376
|
+
declare const Select: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$A, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
376
377
|
|
|
377
|
-
type Props$
|
|
378
|
+
type Props$z = {
|
|
378
379
|
italic?: boolean;
|
|
379
380
|
variant?: string;
|
|
380
381
|
mode?: string;
|
|
@@ -386,8 +387,8 @@ type Props$y = {
|
|
|
386
387
|
declare global {
|
|
387
388
|
namespace React.JSX {
|
|
388
389
|
interface IntrinsicElements {
|
|
389
|
-
'descope-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
390
|
-
'descope-enriched-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
390
|
+
'descope-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$z;
|
|
391
|
+
'descope-enriched-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$z & {
|
|
391
392
|
readonly?: boolean;
|
|
392
393
|
};
|
|
393
394
|
}
|
|
@@ -423,7 +424,7 @@ declare global {
|
|
|
423
424
|
}
|
|
424
425
|
declare const TextField: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
425
426
|
|
|
426
|
-
type Props$
|
|
427
|
+
type Props$y = {
|
|
427
428
|
width?: string;
|
|
428
429
|
height?: string;
|
|
429
430
|
component?: 'code' | 'text';
|
|
@@ -436,7 +437,7 @@ type Props$x = {
|
|
|
436
437
|
declare global {
|
|
437
438
|
namespace React.JSX {
|
|
438
439
|
interface IntrinsicElements {
|
|
439
|
-
'descope-totp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
440
|
+
'descope-totp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$y>;
|
|
440
441
|
}
|
|
441
442
|
}
|
|
442
443
|
}
|
|
@@ -451,26 +452,26 @@ declare const TOTPImage: React.ForwardRefExoticComponent<{
|
|
|
451
452
|
'hide-when-empty'?: boolean;
|
|
452
453
|
} & ITooltip & React.RefAttributes<HTMLDivElement>>;
|
|
453
454
|
|
|
454
|
-
type Props$
|
|
455
|
-
declare const TOTPLink: React.ForwardRefExoticComponent<Omit<Props$
|
|
455
|
+
type Props$x = Omit<React.ComponentProps<typeof Link>, 'href'>;
|
|
456
|
+
declare const TOTPLink: React.ForwardRefExoticComponent<Omit<Props$x, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
456
457
|
|
|
457
|
-
type Props$
|
|
458
|
+
type Props$w = {
|
|
458
459
|
width?: string;
|
|
459
460
|
height?: string;
|
|
460
461
|
};
|
|
461
462
|
declare global {
|
|
462
463
|
namespace React.JSX {
|
|
463
464
|
interface IntrinsicElements {
|
|
464
|
-
'descope-notp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
465
|
+
'descope-notp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$w>;
|
|
465
466
|
}
|
|
466
467
|
}
|
|
467
468
|
}
|
|
468
|
-
declare const NOTPImage: React.ForwardRefExoticComponent<Props$
|
|
469
|
+
declare const NOTPImage: React.ForwardRefExoticComponent<Props$w & React.RefAttributes<HTMLDivElement>>;
|
|
469
470
|
|
|
470
|
-
type Props$
|
|
471
|
-
declare const NOTPLink: React.ForwardRefExoticComponent<Omit<Props$
|
|
471
|
+
type Props$v = Omit<React.ComponentProps<typeof Link>, 'href'>;
|
|
472
|
+
declare const NOTPLink: React.ForwardRefExoticComponent<Omit<Props$v, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
472
473
|
|
|
473
|
-
type Props$
|
|
474
|
+
type Props$u = {
|
|
474
475
|
title?: string;
|
|
475
476
|
description?: string;
|
|
476
477
|
icon?: string;
|
|
@@ -489,13 +490,13 @@ type Props$t = {
|
|
|
489
490
|
declare global {
|
|
490
491
|
namespace React.JSX {
|
|
491
492
|
interface IntrinsicElements {
|
|
492
|
-
'descope-upload-file': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
493
|
+
'descope-upload-file': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$u;
|
|
493
494
|
}
|
|
494
495
|
}
|
|
495
496
|
}
|
|
496
497
|
declare const UploadFile: React.ForwardRefExoticComponent<any>;
|
|
497
498
|
|
|
498
|
-
type Props$
|
|
499
|
+
type Props$t = {
|
|
499
500
|
enabled?: boolean;
|
|
500
501
|
'site-key'?: string;
|
|
501
502
|
enterprise?: boolean;
|
|
@@ -514,7 +515,7 @@ declare global {
|
|
|
514
515
|
}
|
|
515
516
|
namespace React.JSX {
|
|
516
517
|
interface IntrinsicElements {
|
|
517
|
-
'descope-recaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
518
|
+
'descope-recaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$t;
|
|
518
519
|
}
|
|
519
520
|
}
|
|
520
521
|
}
|
|
@@ -522,14 +523,14 @@ declare const Recaptcha: React.ForwardRefExoticComponent<any>;
|
|
|
522
523
|
|
|
523
524
|
declare const RecaptchaV2: React.ForwardRefExoticComponent<any>;
|
|
524
525
|
|
|
525
|
-
type Props$
|
|
526
|
+
type Props$s = DescopeInputProps & {
|
|
526
527
|
'default-value'?: string;
|
|
527
528
|
'allow-deselect'?: boolean;
|
|
528
529
|
};
|
|
529
530
|
declare global {
|
|
530
531
|
namespace React.JSX {
|
|
531
532
|
interface IntrinsicElements {
|
|
532
|
-
'descope-button-selection-group': Props$
|
|
533
|
+
'descope-button-selection-group': Props$s;
|
|
533
534
|
'descope-button-selection-group-item': React.JSX.IntrinsicElements['span'] & {
|
|
534
535
|
value: string;
|
|
535
536
|
children: string;
|
|
@@ -555,10 +556,10 @@ type SingleSelectType = {
|
|
|
555
556
|
layout?: 'horizontal' | 'vertical';
|
|
556
557
|
'label-type'?: LabelType;
|
|
557
558
|
};
|
|
558
|
-
type Props$
|
|
559
|
-
declare const SingleSelect: React.ForwardRefExoticComponent<Omit<Props$
|
|
559
|
+
type Props$r = Omit<React.ComponentProps<typeof ButtonSelectionGroup>, 'allow-deselect'> & SingleSelectType;
|
|
560
|
+
declare const SingleSelect: React.ForwardRefExoticComponent<Omit<Props$r, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
560
561
|
|
|
561
|
-
type Props$
|
|
562
|
+
type Props$q = DescopeInputProps & {
|
|
562
563
|
'default-value'?: string;
|
|
563
564
|
'item-label-path'?: string;
|
|
564
565
|
'item-value-path'?: string;
|
|
@@ -566,7 +567,7 @@ type Props$p = DescopeInputProps & {
|
|
|
566
567
|
declare global {
|
|
567
568
|
namespace React.JSX {
|
|
568
569
|
interface IntrinsicElements {
|
|
569
|
-
'descope-combobox': Props$
|
|
570
|
+
'descope-combobox': Props$q;
|
|
570
571
|
}
|
|
571
572
|
}
|
|
572
573
|
}
|
|
@@ -588,7 +589,7 @@ type Column = {
|
|
|
588
589
|
resizable: boolean;
|
|
589
590
|
};
|
|
590
591
|
};
|
|
591
|
-
type Props$
|
|
592
|
+
type Props$p = {
|
|
592
593
|
identifier: any;
|
|
593
594
|
children?: React.JSX.Element[];
|
|
594
595
|
size?: Omit<ComponentSize, 'xl'>;
|
|
@@ -604,7 +605,7 @@ declare global {
|
|
|
604
605
|
}
|
|
605
606
|
}
|
|
606
607
|
}
|
|
607
|
-
declare const Grid: React.ForwardRefExoticComponent<Props$
|
|
608
|
+
declare const Grid: React.ForwardRefExoticComponent<Props$p & React.RefAttributes<HTMLInputElement>>;
|
|
608
609
|
|
|
609
610
|
type ColumnProps = {
|
|
610
611
|
sortable?: boolean;
|
|
@@ -625,7 +626,7 @@ declare const GridTextColumn: React.ForwardRefExoticComponent<ColumnProps & Reac
|
|
|
625
626
|
|
|
626
627
|
declare const GridItemDetailsColumn: React.ForwardRefExoticComponent<ColumnProps & React.RefAttributes<HTMLInputElement>>;
|
|
627
628
|
|
|
628
|
-
type Props$
|
|
629
|
+
type Props$o = {
|
|
629
630
|
mode?: string;
|
|
630
631
|
size?: string;
|
|
631
632
|
bordered?: boolean;
|
|
@@ -634,7 +635,7 @@ type Props$n = {
|
|
|
634
635
|
declare global {
|
|
635
636
|
namespace React.JSX {
|
|
636
637
|
interface IntrinsicElements {
|
|
637
|
-
'descope-badge': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
638
|
+
'descope-badge': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$o;
|
|
638
639
|
}
|
|
639
640
|
}
|
|
640
641
|
}
|
|
@@ -647,12 +648,12 @@ declare global {
|
|
|
647
648
|
}
|
|
648
649
|
}
|
|
649
650
|
}
|
|
650
|
-
type Props$
|
|
651
|
+
type Props$n = {
|
|
651
652
|
opened?: boolean;
|
|
652
653
|
};
|
|
653
|
-
declare const Modal: React.ForwardRefExoticComponent<Props$
|
|
654
|
+
declare const Modal: React.ForwardRefExoticComponent<Props$n & React.RefAttributes<HTMLDivElement>>;
|
|
654
655
|
|
|
655
|
-
type Props$
|
|
656
|
+
type Props$m = DescopeInputProps & {
|
|
656
657
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
657
658
|
'min-items-selection'?: number;
|
|
658
659
|
'max-items-selection'?: number;
|
|
@@ -660,7 +661,7 @@ type Props$l = DescopeInputProps & {
|
|
|
660
661
|
declare global {
|
|
661
662
|
namespace React.JSX {
|
|
662
663
|
interface IntrinsicElements {
|
|
663
|
-
'descope-button-multi-selection-group': Props$
|
|
664
|
+
'descope-button-multi-selection-group': Props$m & {
|
|
664
665
|
'default-values'?: string;
|
|
665
666
|
};
|
|
666
667
|
'descope-button-selection-group-item': React.JSX.IntrinsicElements['span'] & {
|
|
@@ -687,16 +688,16 @@ type MultiSelectType = {
|
|
|
687
688
|
'max-items-selection'?: number;
|
|
688
689
|
'label-type'?: string;
|
|
689
690
|
};
|
|
690
|
-
type Props$
|
|
691
|
+
type Props$l = Omit<React.ComponentProps<typeof ButtonMultiSelectionGroup>, 'default-values'> & MultiSelectType & {
|
|
691
692
|
'default-values'?: string[];
|
|
692
693
|
};
|
|
693
|
-
declare const MultiSelect: React.ForwardRefExoticComponent<Omit<Props$
|
|
694
|
+
declare const MultiSelect: React.ForwardRefExoticComponent<Omit<Props$l, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
694
695
|
|
|
695
696
|
type Item$3 = {
|
|
696
697
|
label: string;
|
|
697
698
|
value: string;
|
|
698
699
|
};
|
|
699
|
-
type Props$
|
|
700
|
+
type Props$k = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'helper-text' | 'data-errormessage-pattern-mismatch' | 'data-errormessage-value-missing'> & {
|
|
700
701
|
'label-value'?: string;
|
|
701
702
|
'label-attr'?: string;
|
|
702
703
|
'button-label'?: string;
|
|
@@ -708,20 +709,20 @@ type Props$j = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'h
|
|
|
708
709
|
declare global {
|
|
709
710
|
namespace React.JSX {
|
|
710
711
|
interface IntrinsicElements {
|
|
711
|
-
'descope-mappings-field': Omit<Props$
|
|
712
|
+
'descope-mappings-field': Omit<Props$k, 'default-values' | 'options'> & {
|
|
712
713
|
'default-values'?: string;
|
|
713
714
|
options?: string;
|
|
714
715
|
};
|
|
715
716
|
}
|
|
716
717
|
}
|
|
717
718
|
}
|
|
718
|
-
declare const MappingsField: React.ForwardRefExoticComponent<Omit<Props$
|
|
719
|
+
declare const MappingsField: React.ForwardRefExoticComponent<Omit<Props$k, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
719
720
|
|
|
720
721
|
type Item$2 = {
|
|
721
722
|
label: string;
|
|
722
723
|
value: string;
|
|
723
724
|
};
|
|
724
|
-
type Props$
|
|
725
|
+
type Props$j = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'helper-text' | 'data-errormessage-pattern-mismatch' | 'data-errormessage-value-missing'> & {
|
|
725
726
|
'label-value'?: string;
|
|
726
727
|
'label-attr'?: string;
|
|
727
728
|
'label-group'?: string;
|
|
@@ -733,13 +734,13 @@ type Props$i = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'h
|
|
|
733
734
|
declare global {
|
|
734
735
|
namespace React.JSX {
|
|
735
736
|
interface IntrinsicElements {
|
|
736
|
-
'descope-saml-group-mappings': Omit<Props$
|
|
737
|
+
'descope-saml-group-mappings': Omit<Props$j, 'options'> & {
|
|
737
738
|
options?: string;
|
|
738
739
|
};
|
|
739
740
|
}
|
|
740
741
|
}
|
|
741
742
|
}
|
|
742
|
-
declare const SAMLGroupMappings: React.ForwardRefExoticComponent<Omit<Props$
|
|
743
|
+
declare const SAMLGroupMappings: React.ForwardRefExoticComponent<Omit<Props$j, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
743
744
|
|
|
744
745
|
declare global {
|
|
745
746
|
namespace React.JSX {
|
|
@@ -753,7 +754,7 @@ declare global {
|
|
|
753
754
|
}
|
|
754
755
|
declare const UserAuthMethod: React.ForwardRefExoticComponent<any>;
|
|
755
756
|
|
|
756
|
-
type Props$
|
|
757
|
+
type Props$i = {
|
|
757
758
|
'badge-tooltip-text'?: string;
|
|
758
759
|
'badge-label'?: string;
|
|
759
760
|
value?: string;
|
|
@@ -769,13 +770,13 @@ type Props$h = {
|
|
|
769
770
|
declare global {
|
|
770
771
|
namespace React.JSX {
|
|
771
772
|
interface IntrinsicElements {
|
|
772
|
-
'descope-user-attribute': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
773
|
+
'descope-user-attribute': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$i;
|
|
773
774
|
}
|
|
774
775
|
}
|
|
775
776
|
}
|
|
776
777
|
declare const UserAttribute: React.ForwardRefExoticComponent<any>;
|
|
777
778
|
|
|
778
|
-
type Props$
|
|
779
|
+
type Props$h = {
|
|
779
780
|
img?: string;
|
|
780
781
|
'display-name'?: string;
|
|
781
782
|
size?: string;
|
|
@@ -784,26 +785,26 @@ type Props$g = {
|
|
|
784
785
|
declare global {
|
|
785
786
|
namespace React.JSX {
|
|
786
787
|
interface IntrinsicElements {
|
|
787
|
-
'descope-avatar': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
788
|
+
'descope-avatar': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$h;
|
|
788
789
|
}
|
|
789
790
|
}
|
|
790
791
|
}
|
|
791
792
|
declare const Avatar: React.ForwardRefExoticComponent<any>;
|
|
792
793
|
|
|
793
|
-
type Props$
|
|
794
|
+
type Props$g = {
|
|
794
795
|
lang?: 'xml' | 'html' | 'javascript' | 'css' | 'json';
|
|
795
796
|
inline?: boolean;
|
|
796
797
|
};
|
|
797
798
|
declare global {
|
|
798
799
|
namespace React.JSX {
|
|
799
800
|
interface IntrinsicElements {
|
|
800
|
-
'descope-code-snippet': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
801
|
+
'descope-code-snippet': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$g;
|
|
801
802
|
}
|
|
802
803
|
}
|
|
803
804
|
}
|
|
804
805
|
declare const CodeSnippet: React.ForwardRefExoticComponent<any>;
|
|
805
806
|
|
|
806
|
-
type Props$
|
|
807
|
+
type Props$f = {
|
|
807
808
|
emptyState?: React.ReactNode;
|
|
808
809
|
children?: React.ReactNode[];
|
|
809
810
|
variant?: 'list' | 'tiles';
|
|
@@ -811,26 +812,26 @@ type Props$e = {
|
|
|
811
812
|
declare global {
|
|
812
813
|
namespace React.JSX {
|
|
813
814
|
interface IntrinsicElements {
|
|
814
|
-
'descope-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
815
|
+
'descope-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$f>;
|
|
815
816
|
}
|
|
816
817
|
}
|
|
817
818
|
}
|
|
818
|
-
declare const List: React.ForwardRefExoticComponent<Props$
|
|
819
|
+
declare const List: React.ForwardRefExoticComponent<Props$f & React.RefAttributes<HTMLDivElement>>;
|
|
819
820
|
|
|
820
|
-
type Props$
|
|
821
|
+
type Props$e = {
|
|
821
822
|
variant?: 'row' | 'tile';
|
|
822
823
|
children?: React.ReactNode;
|
|
823
824
|
};
|
|
824
825
|
declare global {
|
|
825
826
|
namespace React.JSX {
|
|
826
827
|
interface IntrinsicElements {
|
|
827
|
-
'descope-list-item': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
828
|
+
'descope-list-item': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$e>;
|
|
828
829
|
}
|
|
829
830
|
}
|
|
830
831
|
}
|
|
831
|
-
declare const ListItem: React.ForwardRefExoticComponent<Props$
|
|
832
|
+
declare const ListItem: React.ForwardRefExoticComponent<Props$e & React.RefAttributes<HTMLDivElement>>;
|
|
832
833
|
|
|
833
|
-
type Props$
|
|
834
|
+
type Props$d = {
|
|
834
835
|
emptyState?: React.ReactNode;
|
|
835
836
|
variant?: 'list' | 'tiles' | 'custom';
|
|
836
837
|
data?: any[];
|
|
@@ -839,18 +840,18 @@ type Props$c = {
|
|
|
839
840
|
declare global {
|
|
840
841
|
namespace React.JSX {
|
|
841
842
|
interface IntrinsicElements {
|
|
842
|
-
'descope-apps-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
843
|
+
'descope-apps-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$d>;
|
|
843
844
|
}
|
|
844
845
|
}
|
|
845
846
|
}
|
|
846
|
-
declare const AppsList: React.ForwardRefExoticComponent<Props$
|
|
847
|
+
declare const AppsList: React.ForwardRefExoticComponent<Props$d & React.RefAttributes<HTMLDivElement>>;
|
|
847
848
|
|
|
848
849
|
type Item$1 = {
|
|
849
850
|
desc: string;
|
|
850
851
|
id: string;
|
|
851
852
|
required?: boolean;
|
|
852
853
|
};
|
|
853
|
-
type Props$
|
|
854
|
+
type Props$c = {
|
|
854
855
|
variant?: 'checkbox' | 'switch';
|
|
855
856
|
data?: Item$1[];
|
|
856
857
|
readonly?: boolean;
|
|
@@ -859,17 +860,17 @@ type Props$b = {
|
|
|
859
860
|
declare global {
|
|
860
861
|
namespace React.JSX {
|
|
861
862
|
interface IntrinsicElements {
|
|
862
|
-
'descope-scopes-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
863
|
+
'descope-scopes-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$c>;
|
|
863
864
|
}
|
|
864
865
|
}
|
|
865
866
|
}
|
|
866
|
-
declare const ScopesList: React.ForwardRefExoticComponent<Props$
|
|
867
|
+
declare const ScopesList: React.ForwardRefExoticComponent<Props$c & React.RefAttributes<HTMLDivElement>>;
|
|
867
868
|
|
|
868
869
|
type Question$1 = {
|
|
869
870
|
id: string;
|
|
870
871
|
text: string;
|
|
871
872
|
};
|
|
872
|
-
type Props$
|
|
873
|
+
type Props$b = {
|
|
873
874
|
questions?: Question$1[];
|
|
874
875
|
readonly?: boolean;
|
|
875
876
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -884,17 +885,17 @@ type Props$a = {
|
|
|
884
885
|
declare global {
|
|
885
886
|
namespace React.JSX {
|
|
886
887
|
interface IntrinsicElements {
|
|
887
|
-
'descope-security-questions-setup': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
888
|
+
'descope-security-questions-setup': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$b>;
|
|
888
889
|
}
|
|
889
890
|
}
|
|
890
891
|
}
|
|
891
|
-
declare const SecurityQuestionsSetup: React.ForwardRefExoticComponent<Props$
|
|
892
|
+
declare const SecurityQuestionsSetup: React.ForwardRefExoticComponent<Props$b & React.RefAttributes<HTMLDivElement>>;
|
|
892
893
|
|
|
893
894
|
type Question = {
|
|
894
895
|
id: string;
|
|
895
896
|
text: string;
|
|
896
897
|
};
|
|
897
|
-
type Props$
|
|
898
|
+
type Props$a = {
|
|
898
899
|
questions?: Question[];
|
|
899
900
|
readonly?: boolean;
|
|
900
901
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -908,23 +909,23 @@ type Props$9 = {
|
|
|
908
909
|
declare global {
|
|
909
910
|
namespace React.JSX {
|
|
910
911
|
interface IntrinsicElements {
|
|
911
|
-
'descope-security-questions-verify': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
912
|
+
'descope-security-questions-verify': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$a>;
|
|
912
913
|
}
|
|
913
914
|
}
|
|
914
915
|
}
|
|
915
|
-
declare const SecurityQuestionsVerify: React.ForwardRefExoticComponent<Props$
|
|
916
|
+
declare const SecurityQuestionsVerify: React.ForwardRefExoticComponent<Props$a & React.RefAttributes<HTMLDivElement>>;
|
|
916
917
|
|
|
917
|
-
type Props$
|
|
918
|
+
type Props$9 = {
|
|
918
919
|
size: 'xs' | 'sm' | 'md' | 'lg';
|
|
919
920
|
};
|
|
920
921
|
declare global {
|
|
921
922
|
namespace React.JSX {
|
|
922
923
|
interface IntrinsicElements {
|
|
923
|
-
'descope-third-party-app-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
924
|
+
'descope-third-party-app-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$9>;
|
|
924
925
|
}
|
|
925
926
|
}
|
|
926
927
|
}
|
|
927
|
-
declare const ThirdPartyAppLogo: React.ForwardRefExoticComponent<Props$
|
|
928
|
+
declare const ThirdPartyAppLogo: React.ForwardRefExoticComponent<Props$9 & React.RefAttributes<HTMLDivElement>>;
|
|
928
929
|
|
|
929
930
|
declare global {
|
|
930
931
|
namespace React.JSX {
|
|
@@ -935,7 +936,7 @@ declare global {
|
|
|
935
936
|
}
|
|
936
937
|
declare const DateField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input">, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
937
938
|
|
|
938
|
-
type Props$
|
|
939
|
+
type Props$8 = {
|
|
939
940
|
variant?: 'countrySelection' | 'inputBox';
|
|
940
941
|
'default-code'?: string;
|
|
941
942
|
'phone-input-label'?: string;
|
|
@@ -956,13 +957,13 @@ type Props$7 = {
|
|
|
956
957
|
declare global {
|
|
957
958
|
namespace React.JSX {
|
|
958
959
|
interface IntrinsicElements {
|
|
959
|
-
'descope-hybrid-field': React.DetailedHTMLProps<React.HTMLAttributes<HTMLInputElement>, HTMLInputElement> & PropsToAttrs<Props$
|
|
960
|
+
'descope-hybrid-field': React.DetailedHTMLProps<React.HTMLAttributes<HTMLInputElement>, HTMLInputElement> & PropsToAttrs<Props$8>;
|
|
960
961
|
}
|
|
961
962
|
}
|
|
962
963
|
}
|
|
963
964
|
declare const HybridField: React.ForwardRefExoticComponent<any>;
|
|
964
965
|
|
|
965
|
-
type Props$
|
|
966
|
+
type Props$7 = {
|
|
966
967
|
mode?: string;
|
|
967
968
|
variant?: string;
|
|
968
969
|
bordered?: boolean;
|
|
@@ -974,13 +975,13 @@ type Props$6 = {
|
|
|
974
975
|
declare global {
|
|
975
976
|
namespace React.JSX {
|
|
976
977
|
interface IntrinsicElements {
|
|
977
|
-
'descope-alert': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
978
|
+
'descope-alert': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$7;
|
|
978
979
|
}
|
|
979
980
|
}
|
|
980
981
|
}
|
|
981
|
-
declare const Alert: React.ForwardRefExoticComponent<Props$
|
|
982
|
+
declare const Alert: React.ForwardRefExoticComponent<Props$7 & React.RefAttributes<HTMLElement>>;
|
|
982
983
|
|
|
983
|
-
type Props$
|
|
984
|
+
type Props$6 = {
|
|
984
985
|
'data-connector-id'?: string;
|
|
985
986
|
'connector-template'?: string;
|
|
986
987
|
'min-search-length'?: number;
|
|
@@ -989,11 +990,42 @@ type Props$5 = {
|
|
|
989
990
|
declare global {
|
|
990
991
|
namespace React.JSX {
|
|
991
992
|
interface IntrinsicElements {
|
|
992
|
-
'descope-address-field': Omit<DescopeInputProps, 'external-input'> & Props$
|
|
993
|
+
'descope-address-field': Omit<DescopeInputProps, 'external-input'> & Props$6;
|
|
994
|
+
}
|
|
995
|
+
}
|
|
996
|
+
}
|
|
997
|
+
declare const AddressField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input"> & Props$6, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
998
|
+
|
|
999
|
+
type CountrySubdivisionCityValue = {
|
|
1000
|
+
country?: string;
|
|
1001
|
+
subdivision?: string;
|
|
1002
|
+
city?: string;
|
|
1003
|
+
};
|
|
1004
|
+
type Props$5 = {
|
|
1005
|
+
'hide-country'?: boolean;
|
|
1006
|
+
'hide-subdivision'?: boolean;
|
|
1007
|
+
'hide-city'?: boolean;
|
|
1008
|
+
'default-country'?: string;
|
|
1009
|
+
'allowed-countries'?: string;
|
|
1010
|
+
'pinned-countries'?: string;
|
|
1011
|
+
'country-label'?: string;
|
|
1012
|
+
'subdivision-label'?: string;
|
|
1013
|
+
'city-label'?: string;
|
|
1014
|
+
'country-placeholder'?: string;
|
|
1015
|
+
'subdivision-placeholder'?: string;
|
|
1016
|
+
'city-placeholder'?: string;
|
|
1017
|
+
'data-source-base-url'?: string;
|
|
1018
|
+
lang?: string;
|
|
1019
|
+
value?: CountrySubdivisionCityValue;
|
|
1020
|
+
};
|
|
1021
|
+
declare global {
|
|
1022
|
+
namespace React.JSX {
|
|
1023
|
+
interface IntrinsicElements {
|
|
1024
|
+
'descope-country-subdivision-city-field': Omit<DescopeInputProps, 'external-input' | 'value'> & Props$5;
|
|
993
1025
|
}
|
|
994
1026
|
}
|
|
995
1027
|
}
|
|
996
|
-
declare const
|
|
1028
|
+
declare const CountrySubdivisionCityField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "value" | "external-input"> & Props$5, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
997
1029
|
|
|
998
1030
|
type Props$4 = React.JSX.IntrinsicElements['button'] & {
|
|
999
1031
|
variant?: string;
|
|
@@ -1199,5 +1231,5 @@ type Theme = {
|
|
|
1199
1231
|
};
|
|
1200
1232
|
};
|
|
1201
1233
|
|
|
1202
|
-
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, Honeypot, HoneypotClass, 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, OutboundAppButton, OutboundAppButtonClass, OutboundApps, OutboundAppsClass, PasscodeClass, Password, PasswordClass, Phone, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, Recaptcha, RecaptchaClass, RecaptchaV2, RecoveryCodesClass, RecoveryCodesList, SAMLGroupMappings, SamlGroupMappingsClass, ScopesList, ScopesListClass, SecurityQuestionsSetup, SecurityQuestionsSetupClass, SecurityQuestionsVerify, SecurityQuestionsVerifyClass, Select, SingleSelect, Switch, SwitchToggleClass, TOTPImage, TOTPLink, TenantSelector, Text, TextAreaClass, TextClass, TextField, TextFieldClass, Textarea, ThirdPartyAppLogo, ThirdPartyAppLogoClass, TimerButton, TimerButtonClass, Tooltip, TooltipClass, TotpImageClass, TrustedDevices, TrustedDevicesClass, 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 sessiontoken, ReactComponent as slack, ReactComponent as sso, themeToStyle, themeVars, ReactComponent as whatsapp };
|
|
1234
|
+
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, CountrySubdivisionCityField, CountrySubdivisionCityFieldClass, DateField, DateFieldClass, Divider, DividerClass, EmailFieldClass, EnrichedTextClass, Grid, GridClass, GridCustomColumn, GridItemDetailsColumn, GridSelectionColumn, GridTextColumn, Hcaptcha, HcaptchaClass, Honeypot, HoneypotClass, 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, OutboundAppButton, OutboundAppButtonClass, OutboundApps, OutboundAppsClass, PasscodeClass, Password, PasswordClass, Phone, PhoneFieldClass, PhoneFieldInputBoxClass, PolicyValidationClass, RadioGroupClass, Recaptcha, RecaptchaClass, RecaptchaV2, RecoveryCodesClass, RecoveryCodesList, SAMLGroupMappings, SamlGroupMappingsClass, ScopesList, ScopesListClass, SecurityQuestionsSetup, SecurityQuestionsSetupClass, SecurityQuestionsVerify, SecurityQuestionsVerifyClass, Select, SingleSelect, Switch, SwitchToggleClass, TOTPImage, TOTPLink, TenantSelector, Text, TextAreaClass, TextClass, TextField, TextFieldClass, Textarea, ThirdPartyAppLogo, ThirdPartyAppLogoClass, TimerButton, TimerButtonClass, Tooltip, TooltipClass, TotpImageClass, TrustedDevices, TrustedDevicesClass, 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 sessiontoken, ReactComponent as slack, ReactComponent as sso, themeToStyle, themeVars, ReactComponent as whatsapp };
|
|
1203
1235
|
export type { Theme };
|