@descope/flow-components 2.0.572 → 2.0.574
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/{485.js → 396.js} +1 -1
- package/dist/fm/575.js +1 -1
- package/dist/fm/84.js +1 -1
- package/dist/fm/@mf-types/compiled-types/RecoveryCodesList/RecoveryCodesList.d.ts +21 -0
- package/dist/fm/@mf-types/compiled-types/RecoveryCodesList/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/@mf-types.zip +0 -0
- package/dist/fm/__federation_expose_componentClasses.js +1 -1
- package/dist/fm/__federation_expose_components.js +1 -1
- package/dist/fm/__federation_expose_theme.js +1 -1
- package/dist/fm/flowComponents.js +1 -1
- package/dist/fm/main.js +1 -1
- package/dist/fm/mf-manifest.json +2 -2
- package/dist/fm/mf-stats.json +2 -2
- package/dist/index.cjs.js +5 -0
- package/dist/index.d.ts +149 -129
- package/dist/index.esm.js +5 -2
- package/dist/types/RecoveryCodesList/RecoveryCodesList.d.ts +21 -0
- package/dist/types/RecoveryCodesList/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/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ declare const AlertClass: ComponentClass;
|
|
|
65
65
|
declare const AddressFieldClass: ComponentClass;
|
|
66
66
|
declare const TimerButtonClass: ComponentClass;
|
|
67
67
|
declare const CollapsibleContainerClass: ComponentClass;
|
|
68
|
+
declare const RecoveryCodesListClass: ComponentClass;
|
|
68
69
|
|
|
69
70
|
type KebabCase<S extends string> = S extends `${infer First}${infer Rest}` ? Rest extends Uncapitalize<Rest> ? `${Uncapitalize<First>}${KebabCase<Rest>}` : `${Uncapitalize<First>}-${KebabCase<Rest>}` : S;
|
|
70
71
|
type ComponentSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -116,8 +117,8 @@ declare const Switch: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "r
|
|
|
116
117
|
type BooleanType = {
|
|
117
118
|
type: 'switch' | 'checkbox';
|
|
118
119
|
};
|
|
119
|
-
type Props$
|
|
120
|
-
declare const Boolean: React.ForwardRefExoticComponent<Omit<Props$
|
|
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
122
|
|
|
122
123
|
declare global {
|
|
123
124
|
namespace React.JSX {
|
|
@@ -142,17 +143,17 @@ declare const Button: React.ForwardRefExoticComponent<Omit<React.ClassAttributes
|
|
|
142
143
|
'data-name'?: string;
|
|
143
144
|
}, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
144
145
|
|
|
145
|
-
type Props$
|
|
146
|
+
type Props$I = {
|
|
146
147
|
digits?: number;
|
|
147
148
|
};
|
|
148
149
|
declare global {
|
|
149
150
|
namespace React.JSX {
|
|
150
151
|
interface IntrinsicElements {
|
|
151
|
-
'descope-passcode': DescopeInputProps & Props$
|
|
152
|
+
'descope-passcode': DescopeInputProps & Props$I;
|
|
152
153
|
}
|
|
153
154
|
}
|
|
154
155
|
}
|
|
155
|
-
declare const Code: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$
|
|
156
|
+
declare const Code: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$I, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
156
157
|
|
|
157
158
|
type Never$1<T extends Record<string, any>> = {
|
|
158
159
|
[K in keyof T]: never;
|
|
@@ -168,7 +169,7 @@ type ContainerAlignment$1 = {
|
|
|
168
169
|
'vertical-alignment'?: FlexAlignment;
|
|
169
170
|
'space-between'?: 'sm' | 'md' | 'lg';
|
|
170
171
|
};
|
|
171
|
-
type Props$
|
|
172
|
+
type Props$H = {
|
|
172
173
|
direction?: 'row' | 'column';
|
|
173
174
|
shadow?: 'md' | 'lg' | 'xl' | '2xl';
|
|
174
175
|
borderRadius?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl';
|
|
@@ -186,9 +187,9 @@ declare global {
|
|
|
186
187
|
}
|
|
187
188
|
}
|
|
188
189
|
}
|
|
189
|
-
declare const Container$1: React.ForwardRefExoticComponent<(Props$
|
|
190
|
+
declare const Container$1: React.ForwardRefExoticComponent<(Props$H & React.HTMLAttributes<HTMLDivElement>) & React.RefAttributes<HTMLDivElement>>;
|
|
190
191
|
|
|
191
|
-
type Props$
|
|
192
|
+
type Props$G = {
|
|
192
193
|
vertical?: boolean;
|
|
193
194
|
italic?: boolean;
|
|
194
195
|
variant?: TypographyVariants;
|
|
@@ -198,15 +199,15 @@ type Props$F = {
|
|
|
198
199
|
declare global {
|
|
199
200
|
namespace React.JSX {
|
|
200
201
|
interface IntrinsicElements {
|
|
201
|
-
'descope-divider': React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & Omit<Props$
|
|
202
|
+
'descope-divider': React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & Omit<Props$G, 'children'>;
|
|
202
203
|
}
|
|
203
204
|
}
|
|
204
205
|
}
|
|
205
|
-
declare const Divider: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "size"> & Props$
|
|
206
|
+
declare const Divider: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "size"> & Props$G, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
206
207
|
|
|
207
208
|
declare const ReactComponent: (props: SVGProps) => React.JSX.Element;
|
|
208
209
|
|
|
209
|
-
type Props$
|
|
210
|
+
type Props$F = {
|
|
210
211
|
width?: string;
|
|
211
212
|
height?: string;
|
|
212
213
|
alt?: string;
|
|
@@ -216,15 +217,15 @@ type Props$E = {
|
|
|
216
217
|
declare global {
|
|
217
218
|
namespace React.JSX {
|
|
218
219
|
interface IntrinsicElements {
|
|
219
|
-
'descope-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
220
|
+
'descope-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$F;
|
|
220
221
|
}
|
|
221
222
|
}
|
|
222
223
|
}
|
|
223
|
-
declare const Image: React.ForwardRefExoticComponent<Props$
|
|
224
|
+
declare const Image: React.ForwardRefExoticComponent<Props$F & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
224
225
|
|
|
225
226
|
declare const Input: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
226
227
|
|
|
227
|
-
type Props$
|
|
228
|
+
type Props$E = {
|
|
228
229
|
href?: string | undefined;
|
|
229
230
|
italic?: boolean;
|
|
230
231
|
variant?: TypographyVariants;
|
|
@@ -236,18 +237,18 @@ type Props$D = {
|
|
|
236
237
|
declare global {
|
|
237
238
|
namespace React.JSX {
|
|
238
239
|
interface IntrinsicElements {
|
|
239
|
-
'descope-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> & Omit<Props$
|
|
240
|
+
'descope-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> & Omit<Props$E, 'children'>;
|
|
240
241
|
}
|
|
241
242
|
}
|
|
242
243
|
}
|
|
243
|
-
declare const Link: React.ForwardRefExoticComponent<Props$
|
|
244
|
+
declare const Link: React.ForwardRefExoticComponent<Props$E & React.RefAttributes<HTMLAnchorElement>>;
|
|
244
245
|
|
|
245
|
-
type Props$
|
|
246
|
+
type Props$D = {
|
|
246
247
|
variant?: 'linear' | 'radial';
|
|
247
248
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
248
249
|
color?: Mode;
|
|
249
250
|
};
|
|
250
|
-
type LoaderType = React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
251
|
+
type LoaderType = React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$D>;
|
|
251
252
|
declare global {
|
|
252
253
|
namespace React.JSX {
|
|
253
254
|
interface IntrinsicElements {
|
|
@@ -256,22 +257,22 @@ declare global {
|
|
|
256
257
|
}
|
|
257
258
|
}
|
|
258
259
|
}
|
|
259
|
-
declare const Loader: React.ForwardRefExoticComponent<Props$
|
|
260
|
+
declare const Loader: React.ForwardRefExoticComponent<Props$D & React.RefAttributes<HTMLDivElement>>;
|
|
260
261
|
|
|
261
|
-
type Props$
|
|
262
|
+
type Props$C = {
|
|
262
263
|
width?: string;
|
|
263
264
|
height?: string;
|
|
264
265
|
};
|
|
265
266
|
declare global {
|
|
266
267
|
namespace React.JSX {
|
|
267
268
|
interface IntrinsicElements {
|
|
268
|
-
'descope-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
269
|
+
'descope-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$C>;
|
|
269
270
|
}
|
|
270
271
|
}
|
|
271
272
|
}
|
|
272
|
-
declare const Logo: React.ForwardRefExoticComponent<Props$
|
|
273
|
+
declare const Logo: React.ForwardRefExoticComponent<Props$C & React.RefAttributes<HTMLDivElement>>;
|
|
273
274
|
|
|
274
|
-
type Props$
|
|
275
|
+
type Props$B = {
|
|
275
276
|
'password-label'?: string;
|
|
276
277
|
'password-placeholder'?: string;
|
|
277
278
|
'confirm-label'?: string;
|
|
@@ -298,11 +299,11 @@ type Props$A = {
|
|
|
298
299
|
declare global {
|
|
299
300
|
namespace React.JSX {
|
|
300
301
|
interface IntrinsicElements {
|
|
301
|
-
'descope-new-password': DescopeInputProps & Props$
|
|
302
|
+
'descope-new-password': DescopeInputProps & Props$B;
|
|
302
303
|
}
|
|
303
304
|
}
|
|
304
305
|
}
|
|
305
|
-
declare const NewPassword: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$
|
|
306
|
+
declare const NewPassword: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$B, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
306
307
|
|
|
307
308
|
declare global {
|
|
308
309
|
namespace React.JSX {
|
|
@@ -322,7 +323,7 @@ declare global {
|
|
|
322
323
|
}
|
|
323
324
|
declare const Password: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
324
325
|
|
|
325
|
-
type Props$
|
|
326
|
+
type Props$A = {
|
|
326
327
|
variant: 'countrySelection' | 'inputBox';
|
|
327
328
|
'default-code'?: string;
|
|
328
329
|
'phone-input-placeholder'?: string;
|
|
@@ -331,9 +332,9 @@ type Props$z = {
|
|
|
331
332
|
'format-value'?: boolean;
|
|
332
333
|
'strict-validation'?: boolean;
|
|
333
334
|
} & DescopeInputProps;
|
|
334
|
-
declare const Phone: React.ForwardRefExoticComponent<Omit<Props$
|
|
335
|
+
declare const Phone: React.ForwardRefExoticComponent<Omit<Props$A, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
335
336
|
|
|
336
|
-
type Props$
|
|
337
|
+
type Props$z = {
|
|
337
338
|
children?: React.JSX.Element[];
|
|
338
339
|
data?: string | Record<string, string>[];
|
|
339
340
|
};
|
|
@@ -346,9 +347,9 @@ declare global {
|
|
|
346
347
|
}
|
|
347
348
|
}
|
|
348
349
|
}
|
|
349
|
-
declare const Select: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$
|
|
350
|
+
declare const Select: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$z, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
350
351
|
|
|
351
|
-
type Props$
|
|
352
|
+
type Props$y = {
|
|
352
353
|
italic?: boolean;
|
|
353
354
|
variant?: string;
|
|
354
355
|
mode?: string;
|
|
@@ -360,14 +361,14 @@ type Props$x = {
|
|
|
360
361
|
declare global {
|
|
361
362
|
namespace React.JSX {
|
|
362
363
|
interface IntrinsicElements {
|
|
363
|
-
'descope-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
364
|
-
'descope-enriched-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
364
|
+
'descope-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$y;
|
|
365
|
+
'descope-enriched-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$y & {
|
|
365
366
|
readonly?: boolean;
|
|
366
367
|
};
|
|
367
368
|
}
|
|
368
369
|
}
|
|
369
370
|
}
|
|
370
|
-
declare const Text: React.ForwardRefExoticComponent<Omit<Props$
|
|
371
|
+
declare const Text: React.ForwardRefExoticComponent<Omit<Props$y & {
|
|
371
372
|
typography?: TypographyVariants;
|
|
372
373
|
} & Omit<React.HTMLProps<HTMLSpanElement>, "mode">, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
373
374
|
|
|
@@ -389,39 +390,39 @@ declare global {
|
|
|
389
390
|
}
|
|
390
391
|
declare const TextField: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
391
392
|
|
|
392
|
-
type Props$
|
|
393
|
+
type Props$x = {
|
|
393
394
|
width?: string;
|
|
394
395
|
height?: string;
|
|
395
396
|
};
|
|
396
397
|
declare global {
|
|
397
398
|
namespace React.JSX {
|
|
398
399
|
interface IntrinsicElements {
|
|
399
|
-
'descope-totp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
400
|
+
'descope-totp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$x>;
|
|
400
401
|
}
|
|
401
402
|
}
|
|
402
403
|
}
|
|
403
|
-
declare const TOTPImage: React.ForwardRefExoticComponent<Props$
|
|
404
|
+
declare const TOTPImage: React.ForwardRefExoticComponent<Props$x & React.RefAttributes<HTMLDivElement>>;
|
|
404
405
|
|
|
405
|
-
type Props$
|
|
406
|
-
declare const TOTPLink: React.ForwardRefExoticComponent<Omit<Props$
|
|
406
|
+
type Props$w = Omit<React.ComponentProps<typeof Link>, 'href'>;
|
|
407
|
+
declare const TOTPLink: React.ForwardRefExoticComponent<Omit<Props$w, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
407
408
|
|
|
408
|
-
type Props$
|
|
409
|
+
type Props$v = {
|
|
409
410
|
width?: string;
|
|
410
411
|
height?: string;
|
|
411
412
|
};
|
|
412
413
|
declare global {
|
|
413
414
|
namespace React.JSX {
|
|
414
415
|
interface IntrinsicElements {
|
|
415
|
-
'descope-notp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
416
|
+
'descope-notp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$v>;
|
|
416
417
|
}
|
|
417
418
|
}
|
|
418
419
|
}
|
|
419
|
-
declare const NOTPImage: React.ForwardRefExoticComponent<Props$
|
|
420
|
+
declare const NOTPImage: React.ForwardRefExoticComponent<Props$v & React.RefAttributes<HTMLDivElement>>;
|
|
420
421
|
|
|
421
|
-
type Props$
|
|
422
|
-
declare const NOTPLink: React.ForwardRefExoticComponent<Omit<Props$
|
|
422
|
+
type Props$u = Omit<React.ComponentProps<typeof Link>, 'href'>;
|
|
423
|
+
declare const NOTPLink: React.ForwardRefExoticComponent<Omit<Props$u, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
423
424
|
|
|
424
|
-
type Props$
|
|
425
|
+
type Props$t = {
|
|
425
426
|
title?: string;
|
|
426
427
|
description?: string;
|
|
427
428
|
icon?: string;
|
|
@@ -440,13 +441,13 @@ type Props$s = {
|
|
|
440
441
|
declare global {
|
|
441
442
|
namespace React.JSX {
|
|
442
443
|
interface IntrinsicElements {
|
|
443
|
-
'descope-upload-file': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
444
|
+
'descope-upload-file': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$t;
|
|
444
445
|
}
|
|
445
446
|
}
|
|
446
447
|
}
|
|
447
|
-
declare const UploadFile: React.ForwardRefExoticComponent<Props$
|
|
448
|
+
declare const UploadFile: React.ForwardRefExoticComponent<Props$t & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
448
449
|
|
|
449
|
-
type Props$
|
|
450
|
+
type Props$s = {
|
|
450
451
|
enabled?: boolean;
|
|
451
452
|
'site-key'?: string;
|
|
452
453
|
enterprise?: boolean;
|
|
@@ -465,13 +466,13 @@ declare global {
|
|
|
465
466
|
}
|
|
466
467
|
namespace React.JSX {
|
|
467
468
|
interface IntrinsicElements {
|
|
468
|
-
'descope-recaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
469
|
+
'descope-recaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$s;
|
|
469
470
|
}
|
|
470
471
|
}
|
|
471
472
|
}
|
|
472
|
-
declare const Recaptcha: React.ForwardRefExoticComponent<Props$
|
|
473
|
+
declare const Recaptcha: React.ForwardRefExoticComponent<Props$s & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
473
474
|
|
|
474
|
-
type Props$
|
|
475
|
+
type Props$r = {
|
|
475
476
|
connector?: string;
|
|
476
477
|
enterprise?: boolean;
|
|
477
478
|
action?: string;
|
|
@@ -482,16 +483,16 @@ type Props$q = {
|
|
|
482
483
|
'full-width'?: boolean;
|
|
483
484
|
readOnly?: boolean;
|
|
484
485
|
};
|
|
485
|
-
declare const RecaptchaV2: React.ForwardRefExoticComponent<Props$
|
|
486
|
+
declare const RecaptchaV2: React.ForwardRefExoticComponent<Props$r & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
486
487
|
|
|
487
|
-
type Props$
|
|
488
|
+
type Props$q = DescopeInputProps & {
|
|
488
489
|
'default-value'?: string;
|
|
489
490
|
'allow-deselect'?: boolean;
|
|
490
491
|
};
|
|
491
492
|
declare global {
|
|
492
493
|
namespace React.JSX {
|
|
493
494
|
interface IntrinsicElements {
|
|
494
|
-
'descope-button-selection-group': Props$
|
|
495
|
+
'descope-button-selection-group': Props$q;
|
|
495
496
|
'descope-button-selection-group-item': React.JSX.IntrinsicElements['span'] & {
|
|
496
497
|
value: string;
|
|
497
498
|
children: string;
|
|
@@ -506,21 +507,21 @@ declare const ButtonSelectionGroup: React.ForwardRefExoticComponent<Omit<HTMLInp
|
|
|
506
507
|
children?: React.JSX.Element[];
|
|
507
508
|
}, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
508
509
|
|
|
509
|
-
type Item$
|
|
510
|
+
type Item$5 = {
|
|
510
511
|
label: string;
|
|
511
512
|
value: string;
|
|
512
513
|
};
|
|
513
514
|
type SingleSelectType = {
|
|
514
515
|
variant?: 'buttonSelectionGroup' | 'combobox' | 'radioGroup';
|
|
515
|
-
data?: Item$
|
|
516
|
+
data?: Item$5[];
|
|
516
517
|
allowClearValue?: boolean;
|
|
517
518
|
layout?: 'horizontal' | 'vertical';
|
|
518
519
|
'label-type'?: LabelType;
|
|
519
520
|
};
|
|
520
|
-
type Props$
|
|
521
|
-
declare const SingleSelect: React.ForwardRefExoticComponent<Omit<Props$
|
|
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
523
|
|
|
523
|
-
type Props$
|
|
524
|
+
type Props$o = DescopeInputProps & {
|
|
524
525
|
'default-value'?: string;
|
|
525
526
|
'item-label-path'?: string;
|
|
526
527
|
'item-value-path'?: string;
|
|
@@ -528,7 +529,7 @@ type Props$n = DescopeInputProps & {
|
|
|
528
529
|
declare global {
|
|
529
530
|
namespace React.JSX {
|
|
530
531
|
interface IntrinsicElements {
|
|
531
|
-
'descope-combobox': Props$
|
|
532
|
+
'descope-combobox': Props$o;
|
|
532
533
|
}
|
|
533
534
|
}
|
|
534
535
|
}
|
|
@@ -550,7 +551,7 @@ type Column = {
|
|
|
550
551
|
resizable: boolean;
|
|
551
552
|
};
|
|
552
553
|
};
|
|
553
|
-
type Props$
|
|
554
|
+
type Props$n = {
|
|
554
555
|
identifier: any;
|
|
555
556
|
children?: React.JSX.Element[];
|
|
556
557
|
size?: Omit<ComponentSize, 'xl'>;
|
|
@@ -566,7 +567,7 @@ declare global {
|
|
|
566
567
|
}
|
|
567
568
|
}
|
|
568
569
|
}
|
|
569
|
-
declare const Grid: React.ForwardRefExoticComponent<Props$
|
|
570
|
+
declare const Grid: React.ForwardRefExoticComponent<Props$n & React.RefAttributes<HTMLInputElement>>;
|
|
570
571
|
|
|
571
572
|
type ColumnProps = {
|
|
572
573
|
sortable?: boolean;
|
|
@@ -615,7 +616,7 @@ declare global {
|
|
|
615
616
|
}
|
|
616
617
|
declare const GridItemDetailsColumn: React.ForwardRefExoticComponent<ColumnProps & React.RefAttributes<HTMLInputElement>>;
|
|
617
618
|
|
|
618
|
-
type Props$
|
|
619
|
+
type Props$m = {
|
|
619
620
|
mode?: string;
|
|
620
621
|
size?: string;
|
|
621
622
|
bordered?: boolean;
|
|
@@ -624,11 +625,11 @@ type Props$l = {
|
|
|
624
625
|
declare global {
|
|
625
626
|
namespace React.JSX {
|
|
626
627
|
interface IntrinsicElements {
|
|
627
|
-
'descope-badge': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
628
|
+
'descope-badge': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$m;
|
|
628
629
|
}
|
|
629
630
|
}
|
|
630
631
|
}
|
|
631
|
-
declare const Badge: React.ForwardRefExoticComponent<Props$
|
|
632
|
+
declare const Badge: React.ForwardRefExoticComponent<Props$m & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
632
633
|
|
|
633
634
|
declare global {
|
|
634
635
|
namespace React.JSX {
|
|
@@ -637,12 +638,12 @@ declare global {
|
|
|
637
638
|
}
|
|
638
639
|
}
|
|
639
640
|
}
|
|
640
|
-
type Props$
|
|
641
|
+
type Props$l = {
|
|
641
642
|
opened?: boolean;
|
|
642
643
|
};
|
|
643
|
-
declare const Modal: React.ForwardRefExoticComponent<Props$
|
|
644
|
+
declare const Modal: React.ForwardRefExoticComponent<Props$l & React.RefAttributes<HTMLDivElement>>;
|
|
644
645
|
|
|
645
|
-
type Props$
|
|
646
|
+
type Props$k = DescopeInputProps & {
|
|
646
647
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
647
648
|
'min-items-selection'?: number;
|
|
648
649
|
'max-items-selection'?: number;
|
|
@@ -650,7 +651,7 @@ type Props$j = DescopeInputProps & {
|
|
|
650
651
|
declare global {
|
|
651
652
|
namespace React.JSX {
|
|
652
653
|
interface IntrinsicElements {
|
|
653
|
-
'descope-button-multi-selection-group': Props$
|
|
654
|
+
'descope-button-multi-selection-group': Props$k & {
|
|
654
655
|
'default-values'?: string;
|
|
655
656
|
};
|
|
656
657
|
'descope-button-selection-group-item': React.JSX.IntrinsicElements['span'] & {
|
|
@@ -666,70 +667,70 @@ declare const ButtonMultiSelectionGroup: React.ForwardRefExoticComponent<Omit<HT
|
|
|
666
667
|
'max-items-selection'?: number;
|
|
667
668
|
} & MultiSelectProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
668
669
|
|
|
669
|
-
type Item$
|
|
670
|
+
type Item$4 = {
|
|
670
671
|
label: string;
|
|
671
672
|
value: string;
|
|
672
673
|
};
|
|
673
674
|
type MultiSelectType = {
|
|
674
675
|
variant?: 'buttonSelectionGroup' | 'combobox' | 'dynamicCombobox';
|
|
675
|
-
data?: Item$
|
|
676
|
+
data?: Item$4[];
|
|
676
677
|
'min-items-selection'?: number;
|
|
677
678
|
'max-items-selection'?: number;
|
|
678
679
|
'label-type'?: string;
|
|
679
680
|
};
|
|
680
|
-
type Props$
|
|
681
|
+
type Props$j = Omit<React.ComponentProps<typeof ButtonMultiSelectionGroup>, 'default-values'> & MultiSelectType & {
|
|
681
682
|
'default-values'?: string[];
|
|
682
683
|
};
|
|
683
|
-
declare const MultiSelect: React.ForwardRefExoticComponent<Omit<Props$
|
|
684
|
+
declare const MultiSelect: React.ForwardRefExoticComponent<Omit<Props$j, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
684
685
|
|
|
685
|
-
type Item$
|
|
686
|
+
type Item$3 = {
|
|
686
687
|
label: string;
|
|
687
688
|
value: string;
|
|
688
689
|
};
|
|
689
|
-
type Props$
|
|
690
|
+
type Props$i = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'helper-text' | 'data-errormessage-pattern-mismatch' | 'data-errormessage-value-missing'> & {
|
|
690
691
|
'label-value'?: string;
|
|
691
692
|
'label-attr'?: string;
|
|
692
693
|
'button-label'?: string;
|
|
693
694
|
separator?: string;
|
|
694
695
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
695
696
|
'default-values'?: Record<string, string>[];
|
|
696
|
-
options?: Item$
|
|
697
|
+
options?: Item$3[];
|
|
697
698
|
};
|
|
698
699
|
declare global {
|
|
699
700
|
namespace React.JSX {
|
|
700
701
|
interface IntrinsicElements {
|
|
701
|
-
'descope-mappings-field': Omit<Props$
|
|
702
|
+
'descope-mappings-field': Omit<Props$i, 'default-values' | 'options'> & {
|
|
702
703
|
'default-values'?: string;
|
|
703
704
|
options?: string;
|
|
704
705
|
};
|
|
705
706
|
}
|
|
706
707
|
}
|
|
707
708
|
}
|
|
708
|
-
declare const MappingsField: React.ForwardRefExoticComponent<Omit<Props$
|
|
709
|
+
declare const MappingsField: React.ForwardRefExoticComponent<Omit<Props$i, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
709
710
|
|
|
710
|
-
type Item$
|
|
711
|
+
type Item$2 = {
|
|
711
712
|
label: string;
|
|
712
713
|
value: string;
|
|
713
714
|
};
|
|
714
|
-
type Props$
|
|
715
|
+
type Props$h = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'helper-text' | 'data-errormessage-pattern-mismatch' | 'data-errormessage-value-missing'> & {
|
|
715
716
|
'label-value'?: string;
|
|
716
717
|
'label-attr'?: string;
|
|
717
718
|
'label-group'?: string;
|
|
718
719
|
'button-label'?: string;
|
|
719
720
|
separator?: string;
|
|
720
721
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
721
|
-
options?: Item$
|
|
722
|
+
options?: Item$2[];
|
|
722
723
|
};
|
|
723
724
|
declare global {
|
|
724
725
|
namespace React.JSX {
|
|
725
726
|
interface IntrinsicElements {
|
|
726
|
-
'descope-saml-group-mappings': Omit<Props$
|
|
727
|
+
'descope-saml-group-mappings': Omit<Props$h, 'options'> & {
|
|
727
728
|
options?: string;
|
|
728
729
|
};
|
|
729
730
|
}
|
|
730
731
|
}
|
|
731
732
|
}
|
|
732
|
-
declare const SAMLGroupMappings: React.ForwardRefExoticComponent<Omit<Props$
|
|
733
|
+
declare const SAMLGroupMappings: React.ForwardRefExoticComponent<Omit<Props$h, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
733
734
|
|
|
734
735
|
declare global {
|
|
735
736
|
namespace React.JSX {
|
|
@@ -750,7 +751,7 @@ declare const UserAuthMethod: React.ForwardRefExoticComponent<Omit<React.ClassAt
|
|
|
750
751
|
buttonIcon?: string;
|
|
751
752
|
}, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
752
753
|
|
|
753
|
-
type Props$
|
|
754
|
+
type Props$g = {
|
|
754
755
|
'badge-tooltip-text'?: string;
|
|
755
756
|
'badge-label'?: string;
|
|
756
757
|
value?: string;
|
|
@@ -762,13 +763,13 @@ type Props$f = {
|
|
|
762
763
|
declare global {
|
|
763
764
|
namespace React.JSX {
|
|
764
765
|
interface IntrinsicElements {
|
|
765
|
-
'descope-user-attribute': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
766
|
+
'descope-user-attribute': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$g;
|
|
766
767
|
}
|
|
767
768
|
}
|
|
768
769
|
}
|
|
769
|
-
declare const UserAttribute: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$
|
|
770
|
+
declare const UserAttribute: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$g, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
770
771
|
|
|
771
|
-
type Props$
|
|
772
|
+
type Props$f = {
|
|
772
773
|
img?: string;
|
|
773
774
|
'display-name'?: string;
|
|
774
775
|
size?: string;
|
|
@@ -777,26 +778,26 @@ type Props$e = {
|
|
|
777
778
|
declare global {
|
|
778
779
|
namespace React.JSX {
|
|
779
780
|
interface IntrinsicElements {
|
|
780
|
-
'descope-avatar': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
781
|
+
'descope-avatar': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$f;
|
|
781
782
|
}
|
|
782
783
|
}
|
|
783
784
|
}
|
|
784
|
-
declare const Avatar: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$
|
|
785
|
+
declare const Avatar: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$f, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
785
786
|
|
|
786
|
-
type Props$
|
|
787
|
+
type Props$e = {
|
|
787
788
|
lang?: 'xml' | 'html' | 'javascript' | 'css' | 'json';
|
|
788
789
|
inline?: boolean;
|
|
789
790
|
};
|
|
790
791
|
declare global {
|
|
791
792
|
namespace React.JSX {
|
|
792
793
|
interface IntrinsicElements {
|
|
793
|
-
'descope-code-snippet': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
794
|
+
'descope-code-snippet': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$e;
|
|
794
795
|
}
|
|
795
796
|
}
|
|
796
797
|
}
|
|
797
|
-
declare const CodeSnippet: React.ForwardRefExoticComponent<Props$
|
|
798
|
+
declare const CodeSnippet: React.ForwardRefExoticComponent<Props$e & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
798
799
|
|
|
799
|
-
type Props$
|
|
800
|
+
type Props$d = {
|
|
800
801
|
emptyState?: React.ReactNode;
|
|
801
802
|
children?: React.ReactNode[];
|
|
802
803
|
variant?: 'list' | 'tiles';
|
|
@@ -804,26 +805,26 @@ type Props$c = {
|
|
|
804
805
|
declare global {
|
|
805
806
|
namespace React.JSX {
|
|
806
807
|
interface IntrinsicElements {
|
|
807
|
-
'descope-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
808
|
+
'descope-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$d>;
|
|
808
809
|
}
|
|
809
810
|
}
|
|
810
811
|
}
|
|
811
|
-
declare const List: React.ForwardRefExoticComponent<Props$
|
|
812
|
+
declare const List: React.ForwardRefExoticComponent<Props$d & React.RefAttributes<HTMLDivElement>>;
|
|
812
813
|
|
|
813
|
-
type Props$
|
|
814
|
+
type Props$c = {
|
|
814
815
|
variant?: 'row' | 'tile';
|
|
815
816
|
children?: React.ReactNode;
|
|
816
817
|
};
|
|
817
818
|
declare global {
|
|
818
819
|
namespace React.JSX {
|
|
819
820
|
interface IntrinsicElements {
|
|
820
|
-
'descope-list-item': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
821
|
+
'descope-list-item': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$c>;
|
|
821
822
|
}
|
|
822
823
|
}
|
|
823
824
|
}
|
|
824
|
-
declare const ListItem: React.ForwardRefExoticComponent<Props$
|
|
825
|
+
declare const ListItem: React.ForwardRefExoticComponent<Props$c & React.RefAttributes<HTMLDivElement>>;
|
|
825
826
|
|
|
826
|
-
type Props$
|
|
827
|
+
type Props$b = {
|
|
827
828
|
emptyState?: React.ReactNode;
|
|
828
829
|
variant?: 'list' | 'tiles';
|
|
829
830
|
data?: any[];
|
|
@@ -832,37 +833,37 @@ type Props$a = {
|
|
|
832
833
|
declare global {
|
|
833
834
|
namespace React.JSX {
|
|
834
835
|
interface IntrinsicElements {
|
|
835
|
-
'descope-apps-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
836
|
+
'descope-apps-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$b>;
|
|
836
837
|
}
|
|
837
838
|
}
|
|
838
839
|
}
|
|
839
|
-
declare const AppsList: React.ForwardRefExoticComponent<Props$
|
|
840
|
+
declare const AppsList: React.ForwardRefExoticComponent<Props$b & React.RefAttributes<HTMLDivElement>>;
|
|
840
841
|
|
|
841
|
-
type Item = {
|
|
842
|
+
type Item$1 = {
|
|
842
843
|
desc: string;
|
|
843
844
|
id: string;
|
|
844
845
|
required?: boolean;
|
|
845
846
|
};
|
|
846
|
-
type Props$
|
|
847
|
+
type Props$a = {
|
|
847
848
|
variant?: 'checkbox' | 'switch';
|
|
848
|
-
data?: Item[];
|
|
849
|
+
data?: Item$1[];
|
|
849
850
|
readonly?: boolean;
|
|
850
851
|
size: 'xs' | 'sm' | 'md' | 'lg';
|
|
851
852
|
};
|
|
852
853
|
declare global {
|
|
853
854
|
namespace React.JSX {
|
|
854
855
|
interface IntrinsicElements {
|
|
855
|
-
'descope-scopes-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
856
|
+
'descope-scopes-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$a>;
|
|
856
857
|
}
|
|
857
858
|
}
|
|
858
859
|
}
|
|
859
|
-
declare const ScopesList: React.ForwardRefExoticComponent<Props$
|
|
860
|
+
declare const ScopesList: React.ForwardRefExoticComponent<Props$a & React.RefAttributes<HTMLDivElement>>;
|
|
860
861
|
|
|
861
862
|
type Question$1 = {
|
|
862
863
|
id: string;
|
|
863
864
|
text: string;
|
|
864
865
|
};
|
|
865
|
-
type Props$
|
|
866
|
+
type Props$9 = {
|
|
866
867
|
questions?: Question$1[];
|
|
867
868
|
readonly?: boolean;
|
|
868
869
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -877,17 +878,17 @@ type Props$8 = {
|
|
|
877
878
|
declare global {
|
|
878
879
|
namespace React.JSX {
|
|
879
880
|
interface IntrinsicElements {
|
|
880
|
-
'descope-security-questions-setup': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
881
|
+
'descope-security-questions-setup': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$9>;
|
|
881
882
|
}
|
|
882
883
|
}
|
|
883
884
|
}
|
|
884
|
-
declare const SecurityQuestionsSetup: React.ForwardRefExoticComponent<Props$
|
|
885
|
+
declare const SecurityQuestionsSetup: React.ForwardRefExoticComponent<Props$9 & React.RefAttributes<HTMLDivElement>>;
|
|
885
886
|
|
|
886
887
|
type Question = {
|
|
887
888
|
id: string;
|
|
888
889
|
text: string;
|
|
889
890
|
};
|
|
890
|
-
type Props$
|
|
891
|
+
type Props$8 = {
|
|
891
892
|
questions?: Question[];
|
|
892
893
|
readonly?: boolean;
|
|
893
894
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -901,23 +902,23 @@ type Props$7 = {
|
|
|
901
902
|
declare global {
|
|
902
903
|
namespace React.JSX {
|
|
903
904
|
interface IntrinsicElements {
|
|
904
|
-
'descope-security-questions-verify': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
905
|
+
'descope-security-questions-verify': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$8>;
|
|
905
906
|
}
|
|
906
907
|
}
|
|
907
908
|
}
|
|
908
|
-
declare const SecurityQuestionsVerify: React.ForwardRefExoticComponent<Props$
|
|
909
|
+
declare const SecurityQuestionsVerify: React.ForwardRefExoticComponent<Props$8 & React.RefAttributes<HTMLDivElement>>;
|
|
909
910
|
|
|
910
|
-
type Props$
|
|
911
|
+
type Props$7 = {
|
|
911
912
|
size: 'xs' | 'sm' | 'md' | 'lg';
|
|
912
913
|
};
|
|
913
914
|
declare global {
|
|
914
915
|
namespace React.JSX {
|
|
915
916
|
interface IntrinsicElements {
|
|
916
|
-
'descope-third-party-app-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
917
|
+
'descope-third-party-app-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$7>;
|
|
917
918
|
}
|
|
918
919
|
}
|
|
919
920
|
}
|
|
920
|
-
declare const ThirdPartyAppLogo: React.ForwardRefExoticComponent<Props$
|
|
921
|
+
declare const ThirdPartyAppLogo: React.ForwardRefExoticComponent<Props$7 & React.RefAttributes<HTMLDivElement>>;
|
|
921
922
|
|
|
922
923
|
declare global {
|
|
923
924
|
namespace React.JSX {
|
|
@@ -928,7 +929,7 @@ declare global {
|
|
|
928
929
|
}
|
|
929
930
|
declare const DateField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input">, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
930
931
|
|
|
931
|
-
type Props$
|
|
932
|
+
type Props$6 = {
|
|
932
933
|
variant?: 'countrySelection' | 'inputBox';
|
|
933
934
|
'default-code'?: string;
|
|
934
935
|
'phone-input-label'?: string;
|
|
@@ -949,7 +950,7 @@ type Props$5 = {
|
|
|
949
950
|
declare global {
|
|
950
951
|
namespace React.JSX {
|
|
951
952
|
interface IntrinsicElements {
|
|
952
|
-
'descope-hybrid-field': React.DetailedHTMLProps<React.HTMLAttributes<HTMLInputElement>, HTMLInputElement> & PropsToAttrs<Props$
|
|
953
|
+
'descope-hybrid-field': React.DetailedHTMLProps<React.HTMLAttributes<HTMLInputElement>, HTMLInputElement> & PropsToAttrs<Props$6>;
|
|
953
954
|
}
|
|
954
955
|
}
|
|
955
956
|
}
|
|
@@ -972,7 +973,7 @@ declare const HybridField: React.ForwardRefExoticComponent<Omit<React.ClassAttri
|
|
|
972
973
|
'external-input'?: boolean;
|
|
973
974
|
} & HTMLInputAttrs & DescopeInputExtraProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
974
975
|
|
|
975
|
-
type Props$
|
|
976
|
+
type Props$5 = {
|
|
976
977
|
mode?: string;
|
|
977
978
|
variant?: string;
|
|
978
979
|
bordered?: boolean;
|
|
@@ -984,13 +985,13 @@ type Props$4 = {
|
|
|
984
985
|
declare global {
|
|
985
986
|
namespace React.JSX {
|
|
986
987
|
interface IntrinsicElements {
|
|
987
|
-
'descope-alert': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
988
|
+
'descope-alert': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$5;
|
|
988
989
|
}
|
|
989
990
|
}
|
|
990
991
|
}
|
|
991
|
-
declare const Alert: React.ForwardRefExoticComponent<Props$
|
|
992
|
+
declare const Alert: React.ForwardRefExoticComponent<Props$5 & React.RefAttributes<HTMLElement>>;
|
|
992
993
|
|
|
993
|
-
type Props$
|
|
994
|
+
type Props$4 = {
|
|
994
995
|
'data-connector-id'?: string;
|
|
995
996
|
'connector-template'?: string;
|
|
996
997
|
'min-search-length'?: number;
|
|
@@ -999,13 +1000,13 @@ type Props$3 = {
|
|
|
999
1000
|
declare global {
|
|
1000
1001
|
namespace React.JSX {
|
|
1001
1002
|
interface IntrinsicElements {
|
|
1002
|
-
'descope-address-field': Omit<DescopeInputProps, 'external-input'> & Props$
|
|
1003
|
+
'descope-address-field': Omit<DescopeInputProps, 'external-input'> & Props$4;
|
|
1003
1004
|
}
|
|
1004
1005
|
}
|
|
1005
1006
|
}
|
|
1006
|
-
declare const AddressField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input"> & Props$
|
|
1007
|
+
declare const AddressField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input"> & Props$4, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
1007
1008
|
|
|
1008
|
-
type Props$
|
|
1009
|
+
type Props$3 = React.JSX.IntrinsicElements['button'] & {
|
|
1009
1010
|
variant?: string;
|
|
1010
1011
|
color?: string;
|
|
1011
1012
|
size?: string;
|
|
@@ -1019,7 +1020,7 @@ type Props$2 = React.JSX.IntrinsicElements['button'] & {
|
|
|
1019
1020
|
declare global {
|
|
1020
1021
|
namespace React.JSX {
|
|
1021
1022
|
interface IntrinsicElements {
|
|
1022
|
-
'descope-timer-button': React.DetailedHTMLProps<React.HTMLAttributes<HTMLButtonElement>, HTMLButtonElement> & Props$
|
|
1023
|
+
'descope-timer-button': React.DetailedHTMLProps<React.HTMLAttributes<HTMLButtonElement>, HTMLButtonElement> & Props$3;
|
|
1023
1024
|
}
|
|
1024
1025
|
}
|
|
1025
1026
|
}
|
|
@@ -1047,7 +1048,7 @@ type ContainerAlignment = {
|
|
|
1047
1048
|
'vertical-alignment'?: FlexAlignment;
|
|
1048
1049
|
'space-between'?: 'sm' | 'md' | 'lg';
|
|
1049
1050
|
};
|
|
1050
|
-
type Props$
|
|
1051
|
+
type Props$2 = {
|
|
1051
1052
|
shadow?: 'md' | 'lg' | 'xl' | '2xl';
|
|
1052
1053
|
borderRadius?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl';
|
|
1053
1054
|
paddingX?: string;
|
|
@@ -1073,9 +1074,9 @@ declare global {
|
|
|
1073
1074
|
}
|
|
1074
1075
|
}
|
|
1075
1076
|
}
|
|
1076
|
-
declare const Container: React.ForwardRefExoticComponent<(Props$
|
|
1077
|
+
declare const Container: React.ForwardRefExoticComponent<(Props$2 & React.HTMLAttributes<HTMLDivElement>) & React.RefAttributes<HTMLDivElement>>;
|
|
1077
1078
|
|
|
1078
|
-
type Props = {
|
|
1079
|
+
type Props$1 = {
|
|
1079
1080
|
connector?: string;
|
|
1080
1081
|
action?: string;
|
|
1081
1082
|
textLabel?: string;
|
|
@@ -1084,7 +1085,26 @@ type Props = {
|
|
|
1084
1085
|
textAlign?: TextAlign;
|
|
1085
1086
|
'full-width'?: boolean;
|
|
1086
1087
|
};
|
|
1087
|
-
declare const Turnstile: React.ForwardRefExoticComponent<Props & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
1088
|
+
declare const Turnstile: React.ForwardRefExoticComponent<Props$1 & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
1089
|
+
|
|
1090
|
+
type Item = {
|
|
1091
|
+
value: string;
|
|
1092
|
+
};
|
|
1093
|
+
type Props = {
|
|
1094
|
+
variant?: string;
|
|
1095
|
+
mode?: string;
|
|
1096
|
+
'text-align': TextAlign;
|
|
1097
|
+
'full-width': boolean;
|
|
1098
|
+
data?: Item[];
|
|
1099
|
+
};
|
|
1100
|
+
declare global {
|
|
1101
|
+
namespace React.JSX {
|
|
1102
|
+
interface IntrinsicElements {
|
|
1103
|
+
'descope-recovery-codes': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props>;
|
|
1104
|
+
}
|
|
1105
|
+
}
|
|
1106
|
+
}
|
|
1107
|
+
declare const RecoveryCodesList: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>;
|
|
1088
1108
|
|
|
1089
1109
|
interface IComponentThemeManager {
|
|
1090
1110
|
currentThemeName: string;
|
|
@@ -1131,4 +1151,4 @@ type Theme = {
|
|
|
1131
1151
|
};
|
|
1132
1152
|
};
|
|
1133
1153
|
|
|
1134
|
-
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, 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 microsoft, ReactComponent as passkey, ReactComponent as password, ReactComponent as plus, ReactComponent as reload, ReactComponent as slack, ReactComponent as sso, themeToStyle, themeVars, ReactComponent as whatsapp };
|
|
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 microsoft, ReactComponent as passkey, ReactComponent as password, ReactComponent as plus, ReactComponent as reload, ReactComponent as slack, ReactComponent as sso, themeToStyle, themeVars, ReactComponent as whatsapp };
|