@descope/flow-components 2.0.601 → 2.0.603
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/575.js +1 -1
- package/dist/fm/{153.js → 598.js} +1 -1
- package/dist/fm/84.js +2 -2
- package/dist/fm/@mf-types/compiled-types/OutboundApps/OutboundApps.d.ts +17 -0
- package/dist/fm/@mf-types/compiled-types/OutboundApps/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 +50 -35
- package/dist/index.d.ts +141 -125
- package/dist/index.esm.js +6 -2
- package/dist/types/OutboundApps/OutboundApps.d.ts +17 -0
- package/dist/types/OutboundApps/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
|
@@ -67,6 +67,7 @@ declare const TimerButtonClass: ComponentClass;
|
|
|
67
67
|
declare const CollapsibleContainerClass: ComponentClass;
|
|
68
68
|
declare const RecoveryCodesListClass: ComponentClass;
|
|
69
69
|
declare const HcaptchaClass: ComponentClass;
|
|
70
|
+
declare const OutboundAppsClass: ComponentClass;
|
|
70
71
|
|
|
71
72
|
type KebabCase<S extends string> = S extends `${infer First}${infer Rest}` ? Rest extends Uncapitalize<Rest> ? `${Uncapitalize<First>}${KebabCase<Rest>}` : `${Uncapitalize<First>}-${KebabCase<Rest>}` : S;
|
|
72
73
|
type ComponentSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -118,8 +119,8 @@ declare const Switch: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "r
|
|
|
118
119
|
type BooleanType = {
|
|
119
120
|
type: 'switch' | 'checkbox';
|
|
120
121
|
};
|
|
121
|
-
type Props$
|
|
122
|
-
declare const Boolean: React.ForwardRefExoticComponent<Omit<Props$
|
|
122
|
+
type Props$L = React.ComponentProps<typeof Checkbox> & React.ComponentProps<typeof Switch> & BooleanType;
|
|
123
|
+
declare const Boolean: React.ForwardRefExoticComponent<Omit<Props$L, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
123
124
|
|
|
124
125
|
declare global {
|
|
125
126
|
namespace React.JSX {
|
|
@@ -144,17 +145,17 @@ declare const Button: React.ForwardRefExoticComponent<Omit<React.ClassAttributes
|
|
|
144
145
|
'data-name'?: string;
|
|
145
146
|
}, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
146
147
|
|
|
147
|
-
type Props$
|
|
148
|
+
type Props$K = {
|
|
148
149
|
digits?: number;
|
|
149
150
|
};
|
|
150
151
|
declare global {
|
|
151
152
|
namespace React.JSX {
|
|
152
153
|
interface IntrinsicElements {
|
|
153
|
-
'descope-passcode': DescopeInputProps & Props$
|
|
154
|
+
'descope-passcode': DescopeInputProps & Props$K;
|
|
154
155
|
}
|
|
155
156
|
}
|
|
156
157
|
}
|
|
157
|
-
declare const Code: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$
|
|
158
|
+
declare const Code: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$K, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
158
159
|
|
|
159
160
|
type Never$1<T extends Record<string, any>> = {
|
|
160
161
|
[K in keyof T]: never;
|
|
@@ -170,7 +171,7 @@ type ContainerAlignment$1 = {
|
|
|
170
171
|
'vertical-alignment'?: FlexAlignment;
|
|
171
172
|
'space-between'?: 'sm' | 'md' | 'lg';
|
|
172
173
|
};
|
|
173
|
-
type Props$
|
|
174
|
+
type Props$J = {
|
|
174
175
|
direction?: 'row' | 'column';
|
|
175
176
|
shadow?: 'md' | 'lg' | 'xl' | '2xl';
|
|
176
177
|
borderRadius?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl';
|
|
@@ -188,9 +189,9 @@ declare global {
|
|
|
188
189
|
}
|
|
189
190
|
}
|
|
190
191
|
}
|
|
191
|
-
declare const Container$1: React.ForwardRefExoticComponent<(Props$
|
|
192
|
+
declare const Container$1: React.ForwardRefExoticComponent<(Props$J & React.HTMLAttributes<HTMLDivElement>) & React.RefAttributes<HTMLDivElement>>;
|
|
192
193
|
|
|
193
|
-
type Props$
|
|
194
|
+
type Props$I = {
|
|
194
195
|
vertical?: boolean;
|
|
195
196
|
italic?: boolean;
|
|
196
197
|
variant?: TypographyVariants;
|
|
@@ -200,15 +201,15 @@ type Props$H = {
|
|
|
200
201
|
declare global {
|
|
201
202
|
namespace React.JSX {
|
|
202
203
|
interface IntrinsicElements {
|
|
203
|
-
'descope-divider': React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & Omit<Props$
|
|
204
|
+
'descope-divider': React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & Omit<Props$I, 'children'>;
|
|
204
205
|
}
|
|
205
206
|
}
|
|
206
207
|
}
|
|
207
|
-
declare const Divider: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "size"> & Props$
|
|
208
|
+
declare const Divider: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "size"> & Props$I, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
208
209
|
|
|
209
210
|
declare const ReactComponent: (props: SVGProps) => React.JSX.Element;
|
|
210
211
|
|
|
211
|
-
type Props$
|
|
212
|
+
type Props$H = {
|
|
212
213
|
width?: string;
|
|
213
214
|
height?: string;
|
|
214
215
|
alt?: string;
|
|
@@ -218,15 +219,15 @@ type Props$G = {
|
|
|
218
219
|
declare global {
|
|
219
220
|
namespace React.JSX {
|
|
220
221
|
interface IntrinsicElements {
|
|
221
|
-
'descope-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
222
|
+
'descope-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$H;
|
|
222
223
|
}
|
|
223
224
|
}
|
|
224
225
|
}
|
|
225
|
-
declare const Image: React.ForwardRefExoticComponent<Props$
|
|
226
|
+
declare const Image: React.ForwardRefExoticComponent<Props$H & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
226
227
|
|
|
227
228
|
declare const Input: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
228
229
|
|
|
229
|
-
type Props$
|
|
230
|
+
type Props$G = {
|
|
230
231
|
href?: string | undefined;
|
|
231
232
|
italic?: boolean;
|
|
232
233
|
variant?: TypographyVariants;
|
|
@@ -238,18 +239,18 @@ type Props$F = {
|
|
|
238
239
|
declare global {
|
|
239
240
|
namespace React.JSX {
|
|
240
241
|
interface IntrinsicElements {
|
|
241
|
-
'descope-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> & Omit<Props$
|
|
242
|
+
'descope-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> & Omit<Props$G, 'children'>;
|
|
242
243
|
}
|
|
243
244
|
}
|
|
244
245
|
}
|
|
245
|
-
declare const Link: React.ForwardRefExoticComponent<Props$
|
|
246
|
+
declare const Link: React.ForwardRefExoticComponent<Props$G & React.RefAttributes<HTMLAnchorElement>>;
|
|
246
247
|
|
|
247
|
-
type Props$
|
|
248
|
+
type Props$F = {
|
|
248
249
|
variant?: 'linear' | 'radial';
|
|
249
250
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
250
251
|
color?: Mode;
|
|
251
252
|
};
|
|
252
|
-
type LoaderType = React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
253
|
+
type LoaderType = React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$F>;
|
|
253
254
|
declare global {
|
|
254
255
|
namespace React.JSX {
|
|
255
256
|
interface IntrinsicElements {
|
|
@@ -258,22 +259,22 @@ declare global {
|
|
|
258
259
|
}
|
|
259
260
|
}
|
|
260
261
|
}
|
|
261
|
-
declare const Loader: React.ForwardRefExoticComponent<Props$
|
|
262
|
+
declare const Loader: React.ForwardRefExoticComponent<Props$F & React.RefAttributes<HTMLDivElement>>;
|
|
262
263
|
|
|
263
|
-
type Props$
|
|
264
|
+
type Props$E = {
|
|
264
265
|
width?: string;
|
|
265
266
|
height?: string;
|
|
266
267
|
};
|
|
267
268
|
declare global {
|
|
268
269
|
namespace React.JSX {
|
|
269
270
|
interface IntrinsicElements {
|
|
270
|
-
'descope-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
271
|
+
'descope-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$E>;
|
|
271
272
|
}
|
|
272
273
|
}
|
|
273
274
|
}
|
|
274
|
-
declare const Logo: React.ForwardRefExoticComponent<Props$
|
|
275
|
+
declare const Logo: React.ForwardRefExoticComponent<Props$E & React.RefAttributes<HTMLDivElement>>;
|
|
275
276
|
|
|
276
|
-
type Props$
|
|
277
|
+
type Props$D = {
|
|
277
278
|
'password-label'?: string;
|
|
278
279
|
'password-placeholder'?: string;
|
|
279
280
|
'confirm-label'?: string;
|
|
@@ -300,11 +301,11 @@ type Props$C = {
|
|
|
300
301
|
declare global {
|
|
301
302
|
namespace React.JSX {
|
|
302
303
|
interface IntrinsicElements {
|
|
303
|
-
'descope-new-password': DescopeInputProps & Props$
|
|
304
|
+
'descope-new-password': DescopeInputProps & Props$D;
|
|
304
305
|
}
|
|
305
306
|
}
|
|
306
307
|
}
|
|
307
|
-
declare const NewPassword: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$
|
|
308
|
+
declare const NewPassword: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$D, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
308
309
|
|
|
309
310
|
declare global {
|
|
310
311
|
namespace React.JSX {
|
|
@@ -324,7 +325,7 @@ declare global {
|
|
|
324
325
|
}
|
|
325
326
|
declare const Password: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
326
327
|
|
|
327
|
-
type Props$
|
|
328
|
+
type Props$C = {
|
|
328
329
|
variant: 'countrySelection' | 'inputBox';
|
|
329
330
|
'default-code'?: string;
|
|
330
331
|
'phone-input-placeholder'?: string;
|
|
@@ -333,9 +334,9 @@ type Props$B = {
|
|
|
333
334
|
'format-value'?: boolean;
|
|
334
335
|
'strict-validation'?: boolean;
|
|
335
336
|
} & DescopeInputProps;
|
|
336
|
-
declare const Phone: React.ForwardRefExoticComponent<Omit<Props$
|
|
337
|
+
declare const Phone: React.ForwardRefExoticComponent<Omit<Props$C, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
337
338
|
|
|
338
|
-
type Props$
|
|
339
|
+
type Props$B = {
|
|
339
340
|
children?: React.JSX.Element[];
|
|
340
341
|
data?: string | Record<string, string>[];
|
|
341
342
|
};
|
|
@@ -348,9 +349,9 @@ declare global {
|
|
|
348
349
|
}
|
|
349
350
|
}
|
|
350
351
|
}
|
|
351
|
-
declare const Select: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$
|
|
352
|
+
declare const Select: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$B, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
352
353
|
|
|
353
|
-
type Props$
|
|
354
|
+
type Props$A = {
|
|
354
355
|
italic?: boolean;
|
|
355
356
|
variant?: string;
|
|
356
357
|
mode?: string;
|
|
@@ -362,14 +363,14 @@ type Props$z = {
|
|
|
362
363
|
declare global {
|
|
363
364
|
namespace React.JSX {
|
|
364
365
|
interface IntrinsicElements {
|
|
365
|
-
'descope-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
366
|
-
'descope-enriched-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
366
|
+
'descope-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$A;
|
|
367
|
+
'descope-enriched-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$A & {
|
|
367
368
|
readonly?: boolean;
|
|
368
369
|
};
|
|
369
370
|
}
|
|
370
371
|
}
|
|
371
372
|
}
|
|
372
|
-
declare const Text: React.ForwardRefExoticComponent<Omit<Props$
|
|
373
|
+
declare const Text: React.ForwardRefExoticComponent<Omit<Props$A & {
|
|
373
374
|
typography?: TypographyVariants;
|
|
374
375
|
} & Omit<React.HTMLProps<HTMLSpanElement>, "mode">, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
375
376
|
|
|
@@ -391,39 +392,39 @@ declare global {
|
|
|
391
392
|
}
|
|
392
393
|
declare const TextField: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
393
394
|
|
|
394
|
-
type Props$
|
|
395
|
+
type Props$z = {
|
|
395
396
|
width?: string;
|
|
396
397
|
height?: string;
|
|
397
398
|
};
|
|
398
399
|
declare global {
|
|
399
400
|
namespace React.JSX {
|
|
400
401
|
interface IntrinsicElements {
|
|
401
|
-
'descope-totp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
402
|
+
'descope-totp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$z>;
|
|
402
403
|
}
|
|
403
404
|
}
|
|
404
405
|
}
|
|
405
|
-
declare const TOTPImage: React.ForwardRefExoticComponent<Props$
|
|
406
|
+
declare const TOTPImage: React.ForwardRefExoticComponent<Props$z & React.RefAttributes<HTMLDivElement>>;
|
|
406
407
|
|
|
407
|
-
type Props$
|
|
408
|
-
declare const TOTPLink: React.ForwardRefExoticComponent<Omit<Props$
|
|
408
|
+
type Props$y = Omit<React.ComponentProps<typeof Link>, 'href'>;
|
|
409
|
+
declare const TOTPLink: React.ForwardRefExoticComponent<Omit<Props$y, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
409
410
|
|
|
410
|
-
type Props$
|
|
411
|
+
type Props$x = {
|
|
411
412
|
width?: string;
|
|
412
413
|
height?: string;
|
|
413
414
|
};
|
|
414
415
|
declare global {
|
|
415
416
|
namespace React.JSX {
|
|
416
417
|
interface IntrinsicElements {
|
|
417
|
-
'descope-notp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
418
|
+
'descope-notp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$x>;
|
|
418
419
|
}
|
|
419
420
|
}
|
|
420
421
|
}
|
|
421
|
-
declare const NOTPImage: React.ForwardRefExoticComponent<Props$
|
|
422
|
+
declare const NOTPImage: React.ForwardRefExoticComponent<Props$x & React.RefAttributes<HTMLDivElement>>;
|
|
422
423
|
|
|
423
|
-
type Props$
|
|
424
|
-
declare const NOTPLink: React.ForwardRefExoticComponent<Omit<Props$
|
|
424
|
+
type Props$w = Omit<React.ComponentProps<typeof Link>, 'href'>;
|
|
425
|
+
declare const NOTPLink: React.ForwardRefExoticComponent<Omit<Props$w, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
425
426
|
|
|
426
|
-
type Props$
|
|
427
|
+
type Props$v = {
|
|
427
428
|
title?: string;
|
|
428
429
|
description?: string;
|
|
429
430
|
icon?: string;
|
|
@@ -442,13 +443,13 @@ type Props$u = {
|
|
|
442
443
|
declare global {
|
|
443
444
|
namespace React.JSX {
|
|
444
445
|
interface IntrinsicElements {
|
|
445
|
-
'descope-upload-file': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
446
|
+
'descope-upload-file': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$v;
|
|
446
447
|
}
|
|
447
448
|
}
|
|
448
449
|
}
|
|
449
|
-
declare const UploadFile: React.ForwardRefExoticComponent<Props$
|
|
450
|
+
declare const UploadFile: React.ForwardRefExoticComponent<Props$v & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
450
451
|
|
|
451
|
-
type Props$
|
|
452
|
+
type Props$u = {
|
|
452
453
|
enabled?: boolean;
|
|
453
454
|
'site-key'?: string;
|
|
454
455
|
enterprise?: boolean;
|
|
@@ -467,13 +468,13 @@ declare global {
|
|
|
467
468
|
}
|
|
468
469
|
namespace React.JSX {
|
|
469
470
|
interface IntrinsicElements {
|
|
470
|
-
'descope-recaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
471
|
+
'descope-recaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$u;
|
|
471
472
|
}
|
|
472
473
|
}
|
|
473
474
|
}
|
|
474
|
-
declare const Recaptcha: React.ForwardRefExoticComponent<Props$
|
|
475
|
+
declare const Recaptcha: React.ForwardRefExoticComponent<Props$u & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
475
476
|
|
|
476
|
-
type Props$
|
|
477
|
+
type Props$t = {
|
|
477
478
|
connector?: string;
|
|
478
479
|
enterprise?: boolean;
|
|
479
480
|
action?: string;
|
|
@@ -484,16 +485,16 @@ type Props$s = {
|
|
|
484
485
|
'full-width'?: boolean;
|
|
485
486
|
readOnly?: boolean;
|
|
486
487
|
};
|
|
487
|
-
declare const RecaptchaV2: React.ForwardRefExoticComponent<Props$
|
|
488
|
+
declare const RecaptchaV2: React.ForwardRefExoticComponent<Props$t & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
488
489
|
|
|
489
|
-
type Props$
|
|
490
|
+
type Props$s = DescopeInputProps & {
|
|
490
491
|
'default-value'?: string;
|
|
491
492
|
'allow-deselect'?: boolean;
|
|
492
493
|
};
|
|
493
494
|
declare global {
|
|
494
495
|
namespace React.JSX {
|
|
495
496
|
interface IntrinsicElements {
|
|
496
|
-
'descope-button-selection-group': Props$
|
|
497
|
+
'descope-button-selection-group': Props$s;
|
|
497
498
|
'descope-button-selection-group-item': React.JSX.IntrinsicElements['span'] & {
|
|
498
499
|
value: string;
|
|
499
500
|
children: string;
|
|
@@ -519,10 +520,10 @@ type SingleSelectType = {
|
|
|
519
520
|
layout?: 'horizontal' | 'vertical';
|
|
520
521
|
'label-type'?: LabelType;
|
|
521
522
|
};
|
|
522
|
-
type Props$
|
|
523
|
-
declare const SingleSelect: React.ForwardRefExoticComponent<Omit<Props$
|
|
523
|
+
type Props$r = Omit<React.ComponentProps<typeof ButtonSelectionGroup>, 'allow-deselect'> & SingleSelectType;
|
|
524
|
+
declare const SingleSelect: React.ForwardRefExoticComponent<Omit<Props$r, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
524
525
|
|
|
525
|
-
type Props$
|
|
526
|
+
type Props$q = DescopeInputProps & {
|
|
526
527
|
'default-value'?: string;
|
|
527
528
|
'item-label-path'?: string;
|
|
528
529
|
'item-value-path'?: string;
|
|
@@ -530,7 +531,7 @@ type Props$p = DescopeInputProps & {
|
|
|
530
531
|
declare global {
|
|
531
532
|
namespace React.JSX {
|
|
532
533
|
interface IntrinsicElements {
|
|
533
|
-
'descope-combobox': Props$
|
|
534
|
+
'descope-combobox': Props$q;
|
|
534
535
|
}
|
|
535
536
|
}
|
|
536
537
|
}
|
|
@@ -552,7 +553,7 @@ type Column = {
|
|
|
552
553
|
resizable: boolean;
|
|
553
554
|
};
|
|
554
555
|
};
|
|
555
|
-
type Props$
|
|
556
|
+
type Props$p = {
|
|
556
557
|
identifier: any;
|
|
557
558
|
children?: React.JSX.Element[];
|
|
558
559
|
size?: Omit<ComponentSize, 'xl'>;
|
|
@@ -568,7 +569,7 @@ declare global {
|
|
|
568
569
|
}
|
|
569
570
|
}
|
|
570
571
|
}
|
|
571
|
-
declare const Grid: React.ForwardRefExoticComponent<Props$
|
|
572
|
+
declare const Grid: React.ForwardRefExoticComponent<Props$p & React.RefAttributes<HTMLInputElement>>;
|
|
572
573
|
|
|
573
574
|
type ColumnProps = {
|
|
574
575
|
sortable?: boolean;
|
|
@@ -617,7 +618,7 @@ declare global {
|
|
|
617
618
|
}
|
|
618
619
|
declare const GridItemDetailsColumn: React.ForwardRefExoticComponent<ColumnProps & React.RefAttributes<HTMLInputElement>>;
|
|
619
620
|
|
|
620
|
-
type Props$
|
|
621
|
+
type Props$o = {
|
|
621
622
|
mode?: string;
|
|
622
623
|
size?: string;
|
|
623
624
|
bordered?: boolean;
|
|
@@ -626,11 +627,11 @@ type Props$n = {
|
|
|
626
627
|
declare global {
|
|
627
628
|
namespace React.JSX {
|
|
628
629
|
interface IntrinsicElements {
|
|
629
|
-
'descope-badge': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
630
|
+
'descope-badge': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$o;
|
|
630
631
|
}
|
|
631
632
|
}
|
|
632
633
|
}
|
|
633
|
-
declare const Badge: React.ForwardRefExoticComponent<Props$
|
|
634
|
+
declare const Badge: React.ForwardRefExoticComponent<Props$o & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
634
635
|
|
|
635
636
|
declare global {
|
|
636
637
|
namespace React.JSX {
|
|
@@ -639,12 +640,12 @@ declare global {
|
|
|
639
640
|
}
|
|
640
641
|
}
|
|
641
642
|
}
|
|
642
|
-
type Props$
|
|
643
|
+
type Props$n = {
|
|
643
644
|
opened?: boolean;
|
|
644
645
|
};
|
|
645
|
-
declare const Modal: React.ForwardRefExoticComponent<Props$
|
|
646
|
+
declare const Modal: React.ForwardRefExoticComponent<Props$n & React.RefAttributes<HTMLDivElement>>;
|
|
646
647
|
|
|
647
|
-
type Props$
|
|
648
|
+
type Props$m = DescopeInputProps & {
|
|
648
649
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
649
650
|
'min-items-selection'?: number;
|
|
650
651
|
'max-items-selection'?: number;
|
|
@@ -652,7 +653,7 @@ type Props$l = DescopeInputProps & {
|
|
|
652
653
|
declare global {
|
|
653
654
|
namespace React.JSX {
|
|
654
655
|
interface IntrinsicElements {
|
|
655
|
-
'descope-button-multi-selection-group': Props$
|
|
656
|
+
'descope-button-multi-selection-group': Props$m & {
|
|
656
657
|
'default-values'?: string;
|
|
657
658
|
};
|
|
658
659
|
'descope-button-selection-group-item': React.JSX.IntrinsicElements['span'] & {
|
|
@@ -679,16 +680,16 @@ type MultiSelectType = {
|
|
|
679
680
|
'max-items-selection'?: number;
|
|
680
681
|
'label-type'?: string;
|
|
681
682
|
};
|
|
682
|
-
type Props$
|
|
683
|
+
type Props$l = Omit<React.ComponentProps<typeof ButtonMultiSelectionGroup>, 'default-values'> & MultiSelectType & {
|
|
683
684
|
'default-values'?: string[];
|
|
684
685
|
};
|
|
685
|
-
declare const MultiSelect: React.ForwardRefExoticComponent<Omit<Props$
|
|
686
|
+
declare const MultiSelect: React.ForwardRefExoticComponent<Omit<Props$l, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
686
687
|
|
|
687
688
|
type Item$3 = {
|
|
688
689
|
label: string;
|
|
689
690
|
value: string;
|
|
690
691
|
};
|
|
691
|
-
type Props$
|
|
692
|
+
type Props$k = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'helper-text' | 'data-errormessage-pattern-mismatch' | 'data-errormessage-value-missing'> & {
|
|
692
693
|
'label-value'?: string;
|
|
693
694
|
'label-attr'?: string;
|
|
694
695
|
'button-label'?: string;
|
|
@@ -700,20 +701,20 @@ type Props$j = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'h
|
|
|
700
701
|
declare global {
|
|
701
702
|
namespace React.JSX {
|
|
702
703
|
interface IntrinsicElements {
|
|
703
|
-
'descope-mappings-field': Omit<Props$
|
|
704
|
+
'descope-mappings-field': Omit<Props$k, 'default-values' | 'options'> & {
|
|
704
705
|
'default-values'?: string;
|
|
705
706
|
options?: string;
|
|
706
707
|
};
|
|
707
708
|
}
|
|
708
709
|
}
|
|
709
710
|
}
|
|
710
|
-
declare const MappingsField: React.ForwardRefExoticComponent<Omit<Props$
|
|
711
|
+
declare const MappingsField: React.ForwardRefExoticComponent<Omit<Props$k, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
711
712
|
|
|
712
713
|
type Item$2 = {
|
|
713
714
|
label: string;
|
|
714
715
|
value: string;
|
|
715
716
|
};
|
|
716
|
-
type Props$
|
|
717
|
+
type Props$j = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'helper-text' | 'data-errormessage-pattern-mismatch' | 'data-errormessage-value-missing'> & {
|
|
717
718
|
'label-value'?: string;
|
|
718
719
|
'label-attr'?: string;
|
|
719
720
|
'label-group'?: string;
|
|
@@ -725,13 +726,13 @@ type Props$i = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'h
|
|
|
725
726
|
declare global {
|
|
726
727
|
namespace React.JSX {
|
|
727
728
|
interface IntrinsicElements {
|
|
728
|
-
'descope-saml-group-mappings': Omit<Props$
|
|
729
|
+
'descope-saml-group-mappings': Omit<Props$j, 'options'> & {
|
|
729
730
|
options?: string;
|
|
730
731
|
};
|
|
731
732
|
}
|
|
732
733
|
}
|
|
733
734
|
}
|
|
734
|
-
declare const SAMLGroupMappings: React.ForwardRefExoticComponent<Omit<Props$
|
|
735
|
+
declare const SAMLGroupMappings: React.ForwardRefExoticComponent<Omit<Props$j, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
735
736
|
|
|
736
737
|
declare global {
|
|
737
738
|
namespace React.JSX {
|
|
@@ -752,7 +753,7 @@ declare const UserAuthMethod: React.ForwardRefExoticComponent<Omit<React.ClassAt
|
|
|
752
753
|
buttonIcon?: string;
|
|
753
754
|
}, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
754
755
|
|
|
755
|
-
type Props$
|
|
756
|
+
type Props$i = {
|
|
756
757
|
'badge-tooltip-text'?: string;
|
|
757
758
|
'badge-label'?: string;
|
|
758
759
|
value?: string;
|
|
@@ -764,13 +765,13 @@ type Props$h = {
|
|
|
764
765
|
declare global {
|
|
765
766
|
namespace React.JSX {
|
|
766
767
|
interface IntrinsicElements {
|
|
767
|
-
'descope-user-attribute': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
768
|
+
'descope-user-attribute': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$i;
|
|
768
769
|
}
|
|
769
770
|
}
|
|
770
771
|
}
|
|
771
|
-
declare const UserAttribute: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$
|
|
772
|
+
declare const UserAttribute: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$i, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
772
773
|
|
|
773
|
-
type Props$
|
|
774
|
+
type Props$h = {
|
|
774
775
|
img?: string;
|
|
775
776
|
'display-name'?: string;
|
|
776
777
|
size?: string;
|
|
@@ -779,26 +780,26 @@ type Props$g = {
|
|
|
779
780
|
declare global {
|
|
780
781
|
namespace React.JSX {
|
|
781
782
|
interface IntrinsicElements {
|
|
782
|
-
'descope-avatar': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
783
|
+
'descope-avatar': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$h;
|
|
783
784
|
}
|
|
784
785
|
}
|
|
785
786
|
}
|
|
786
|
-
declare const Avatar: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$
|
|
787
|
+
declare const Avatar: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$h, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
787
788
|
|
|
788
|
-
type Props$
|
|
789
|
+
type Props$g = {
|
|
789
790
|
lang?: 'xml' | 'html' | 'javascript' | 'css' | 'json';
|
|
790
791
|
inline?: boolean;
|
|
791
792
|
};
|
|
792
793
|
declare global {
|
|
793
794
|
namespace React.JSX {
|
|
794
795
|
interface IntrinsicElements {
|
|
795
|
-
'descope-code-snippet': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
796
|
+
'descope-code-snippet': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$g;
|
|
796
797
|
}
|
|
797
798
|
}
|
|
798
799
|
}
|
|
799
|
-
declare const CodeSnippet: React.ForwardRefExoticComponent<Props$
|
|
800
|
+
declare const CodeSnippet: React.ForwardRefExoticComponent<Props$g & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
800
801
|
|
|
801
|
-
type Props$
|
|
802
|
+
type Props$f = {
|
|
802
803
|
emptyState?: React.ReactNode;
|
|
803
804
|
children?: React.ReactNode[];
|
|
804
805
|
variant?: 'list' | 'tiles';
|
|
@@ -806,26 +807,26 @@ type Props$e = {
|
|
|
806
807
|
declare global {
|
|
807
808
|
namespace React.JSX {
|
|
808
809
|
interface IntrinsicElements {
|
|
809
|
-
'descope-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
810
|
+
'descope-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$f>;
|
|
810
811
|
}
|
|
811
812
|
}
|
|
812
813
|
}
|
|
813
|
-
declare const List: React.ForwardRefExoticComponent<Props$
|
|
814
|
+
declare const List: React.ForwardRefExoticComponent<Props$f & React.RefAttributes<HTMLDivElement>>;
|
|
814
815
|
|
|
815
|
-
type Props$
|
|
816
|
+
type Props$e = {
|
|
816
817
|
variant?: 'row' | 'tile';
|
|
817
818
|
children?: React.ReactNode;
|
|
818
819
|
};
|
|
819
820
|
declare global {
|
|
820
821
|
namespace React.JSX {
|
|
821
822
|
interface IntrinsicElements {
|
|
822
|
-
'descope-list-item': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
823
|
+
'descope-list-item': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$e>;
|
|
823
824
|
}
|
|
824
825
|
}
|
|
825
826
|
}
|
|
826
|
-
declare const ListItem: React.ForwardRefExoticComponent<Props$
|
|
827
|
+
declare const ListItem: React.ForwardRefExoticComponent<Props$e & React.RefAttributes<HTMLDivElement>>;
|
|
827
828
|
|
|
828
|
-
type Props$
|
|
829
|
+
type Props$d = {
|
|
829
830
|
emptyState?: React.ReactNode;
|
|
830
831
|
variant?: 'list' | 'tiles';
|
|
831
832
|
data?: any[];
|
|
@@ -834,18 +835,18 @@ type Props$c = {
|
|
|
834
835
|
declare global {
|
|
835
836
|
namespace React.JSX {
|
|
836
837
|
interface IntrinsicElements {
|
|
837
|
-
'descope-apps-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
838
|
+
'descope-apps-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$d>;
|
|
838
839
|
}
|
|
839
840
|
}
|
|
840
841
|
}
|
|
841
|
-
declare const AppsList: React.ForwardRefExoticComponent<Props$
|
|
842
|
+
declare const AppsList: React.ForwardRefExoticComponent<Props$d & React.RefAttributes<HTMLDivElement>>;
|
|
842
843
|
|
|
843
844
|
type Item$1 = {
|
|
844
845
|
desc: string;
|
|
845
846
|
id: string;
|
|
846
847
|
required?: boolean;
|
|
847
848
|
};
|
|
848
|
-
type Props$
|
|
849
|
+
type Props$c = {
|
|
849
850
|
variant?: 'checkbox' | 'switch';
|
|
850
851
|
data?: Item$1[];
|
|
851
852
|
readonly?: boolean;
|
|
@@ -854,17 +855,17 @@ type Props$b = {
|
|
|
854
855
|
declare global {
|
|
855
856
|
namespace React.JSX {
|
|
856
857
|
interface IntrinsicElements {
|
|
857
|
-
'descope-scopes-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
858
|
+
'descope-scopes-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$c>;
|
|
858
859
|
}
|
|
859
860
|
}
|
|
860
861
|
}
|
|
861
|
-
declare const ScopesList: React.ForwardRefExoticComponent<Props$
|
|
862
|
+
declare const ScopesList: React.ForwardRefExoticComponent<Props$c & React.RefAttributes<HTMLDivElement>>;
|
|
862
863
|
|
|
863
864
|
type Question$1 = {
|
|
864
865
|
id: string;
|
|
865
866
|
text: string;
|
|
866
867
|
};
|
|
867
|
-
type Props$
|
|
868
|
+
type Props$b = {
|
|
868
869
|
questions?: Question$1[];
|
|
869
870
|
readonly?: boolean;
|
|
870
871
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -879,17 +880,17 @@ type Props$a = {
|
|
|
879
880
|
declare global {
|
|
880
881
|
namespace React.JSX {
|
|
881
882
|
interface IntrinsicElements {
|
|
882
|
-
'descope-security-questions-setup': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
883
|
+
'descope-security-questions-setup': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$b>;
|
|
883
884
|
}
|
|
884
885
|
}
|
|
885
886
|
}
|
|
886
|
-
declare const SecurityQuestionsSetup: React.ForwardRefExoticComponent<Props$
|
|
887
|
+
declare const SecurityQuestionsSetup: React.ForwardRefExoticComponent<Props$b & React.RefAttributes<HTMLDivElement>>;
|
|
887
888
|
|
|
888
889
|
type Question = {
|
|
889
890
|
id: string;
|
|
890
891
|
text: string;
|
|
891
892
|
};
|
|
892
|
-
type Props$
|
|
893
|
+
type Props$a = {
|
|
893
894
|
questions?: Question[];
|
|
894
895
|
readonly?: boolean;
|
|
895
896
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -903,23 +904,23 @@ type Props$9 = {
|
|
|
903
904
|
declare global {
|
|
904
905
|
namespace React.JSX {
|
|
905
906
|
interface IntrinsicElements {
|
|
906
|
-
'descope-security-questions-verify': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
907
|
+
'descope-security-questions-verify': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$a>;
|
|
907
908
|
}
|
|
908
909
|
}
|
|
909
910
|
}
|
|
910
|
-
declare const SecurityQuestionsVerify: React.ForwardRefExoticComponent<Props$
|
|
911
|
+
declare const SecurityQuestionsVerify: React.ForwardRefExoticComponent<Props$a & React.RefAttributes<HTMLDivElement>>;
|
|
911
912
|
|
|
912
|
-
type Props$
|
|
913
|
+
type Props$9 = {
|
|
913
914
|
size: 'xs' | 'sm' | 'md' | 'lg';
|
|
914
915
|
};
|
|
915
916
|
declare global {
|
|
916
917
|
namespace React.JSX {
|
|
917
918
|
interface IntrinsicElements {
|
|
918
|
-
'descope-third-party-app-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
919
|
+
'descope-third-party-app-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$9>;
|
|
919
920
|
}
|
|
920
921
|
}
|
|
921
922
|
}
|
|
922
|
-
declare const ThirdPartyAppLogo: React.ForwardRefExoticComponent<Props$
|
|
923
|
+
declare const ThirdPartyAppLogo: React.ForwardRefExoticComponent<Props$9 & React.RefAttributes<HTMLDivElement>>;
|
|
923
924
|
|
|
924
925
|
declare global {
|
|
925
926
|
namespace React.JSX {
|
|
@@ -930,7 +931,7 @@ declare global {
|
|
|
930
931
|
}
|
|
931
932
|
declare const DateField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input">, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
932
933
|
|
|
933
|
-
type Props$
|
|
934
|
+
type Props$8 = {
|
|
934
935
|
variant?: 'countrySelection' | 'inputBox';
|
|
935
936
|
'default-code'?: string;
|
|
936
937
|
'phone-input-label'?: string;
|
|
@@ -951,7 +952,7 @@ type Props$7 = {
|
|
|
951
952
|
declare global {
|
|
952
953
|
namespace React.JSX {
|
|
953
954
|
interface IntrinsicElements {
|
|
954
|
-
'descope-hybrid-field': React.DetailedHTMLProps<React.HTMLAttributes<HTMLInputElement>, HTMLInputElement> & PropsToAttrs<Props$
|
|
955
|
+
'descope-hybrid-field': React.DetailedHTMLProps<React.HTMLAttributes<HTMLInputElement>, HTMLInputElement> & PropsToAttrs<Props$8>;
|
|
955
956
|
}
|
|
956
957
|
}
|
|
957
958
|
}
|
|
@@ -974,7 +975,7 @@ declare const HybridField: React.ForwardRefExoticComponent<Omit<React.ClassAttri
|
|
|
974
975
|
'external-input'?: boolean;
|
|
975
976
|
} & HTMLInputAttrs & DescopeInputExtraProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
976
977
|
|
|
977
|
-
type Props$
|
|
978
|
+
type Props$7 = {
|
|
978
979
|
mode?: string;
|
|
979
980
|
variant?: string;
|
|
980
981
|
bordered?: boolean;
|
|
@@ -986,13 +987,13 @@ type Props$6 = {
|
|
|
986
987
|
declare global {
|
|
987
988
|
namespace React.JSX {
|
|
988
989
|
interface IntrinsicElements {
|
|
989
|
-
'descope-alert': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
990
|
+
'descope-alert': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$7;
|
|
990
991
|
}
|
|
991
992
|
}
|
|
992
993
|
}
|
|
993
|
-
declare const Alert: React.ForwardRefExoticComponent<Props$
|
|
994
|
+
declare const Alert: React.ForwardRefExoticComponent<Props$7 & React.RefAttributes<HTMLElement>>;
|
|
994
995
|
|
|
995
|
-
type Props$
|
|
996
|
+
type Props$6 = {
|
|
996
997
|
'data-connector-id'?: string;
|
|
997
998
|
'connector-template'?: string;
|
|
998
999
|
'min-search-length'?: number;
|
|
@@ -1001,13 +1002,13 @@ type Props$5 = {
|
|
|
1001
1002
|
declare global {
|
|
1002
1003
|
namespace React.JSX {
|
|
1003
1004
|
interface IntrinsicElements {
|
|
1004
|
-
'descope-address-field': Omit<DescopeInputProps, 'external-input'> & Props$
|
|
1005
|
+
'descope-address-field': Omit<DescopeInputProps, 'external-input'> & Props$6;
|
|
1005
1006
|
}
|
|
1006
1007
|
}
|
|
1007
1008
|
}
|
|
1008
|
-
declare const AddressField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input"> & Props$
|
|
1009
|
+
declare const AddressField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input"> & Props$6, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
1009
1010
|
|
|
1010
|
-
type Props$
|
|
1011
|
+
type Props$5 = React.JSX.IntrinsicElements['button'] & {
|
|
1011
1012
|
variant?: string;
|
|
1012
1013
|
color?: string;
|
|
1013
1014
|
size?: string;
|
|
@@ -1021,7 +1022,7 @@ type Props$4 = React.JSX.IntrinsicElements['button'] & {
|
|
|
1021
1022
|
declare global {
|
|
1022
1023
|
namespace React.JSX {
|
|
1023
1024
|
interface IntrinsicElements {
|
|
1024
|
-
'descope-timer-button': React.DetailedHTMLProps<React.HTMLAttributes<HTMLButtonElement>, HTMLButtonElement> & Props$
|
|
1025
|
+
'descope-timer-button': React.DetailedHTMLProps<React.HTMLAttributes<HTMLButtonElement>, HTMLButtonElement> & Props$5;
|
|
1025
1026
|
}
|
|
1026
1027
|
}
|
|
1027
1028
|
}
|
|
@@ -1049,7 +1050,7 @@ type ContainerAlignment = {
|
|
|
1049
1050
|
'vertical-alignment'?: FlexAlignment;
|
|
1050
1051
|
'space-between'?: 'sm' | 'md' | 'lg';
|
|
1051
1052
|
};
|
|
1052
|
-
type Props$
|
|
1053
|
+
type Props$4 = {
|
|
1053
1054
|
shadow?: 'md' | 'lg' | 'xl' | '2xl';
|
|
1054
1055
|
borderRadius?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl';
|
|
1055
1056
|
paddingX?: string;
|
|
@@ -1075,9 +1076,9 @@ declare global {
|
|
|
1075
1076
|
}
|
|
1076
1077
|
}
|
|
1077
1078
|
}
|
|
1078
|
-
declare const Container: React.ForwardRefExoticComponent<(Props$
|
|
1079
|
+
declare const Container: React.ForwardRefExoticComponent<(Props$4 & React.HTMLAttributes<HTMLDivElement>) & React.RefAttributes<HTMLDivElement>>;
|
|
1079
1080
|
|
|
1080
|
-
type Props$
|
|
1081
|
+
type Props$3 = {
|
|
1081
1082
|
connector?: string;
|
|
1082
1083
|
action?: string;
|
|
1083
1084
|
textLabel?: string;
|
|
@@ -1086,12 +1087,12 @@ type Props$2 = {
|
|
|
1086
1087
|
textAlign?: TextAlign;
|
|
1087
1088
|
'full-width'?: boolean;
|
|
1088
1089
|
};
|
|
1089
|
-
declare const Turnstile: React.ForwardRefExoticComponent<Props$
|
|
1090
|
+
declare const Turnstile: React.ForwardRefExoticComponent<Props$3 & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
1090
1091
|
|
|
1091
1092
|
type Item = {
|
|
1092
1093
|
value: string;
|
|
1093
1094
|
};
|
|
1094
|
-
type Props$
|
|
1095
|
+
type Props$2 = {
|
|
1095
1096
|
variant?: string;
|
|
1096
1097
|
mode?: string;
|
|
1097
1098
|
'text-align': TextAlign;
|
|
@@ -1101,24 +1102,39 @@ type Props$1 = {
|
|
|
1101
1102
|
declare global {
|
|
1102
1103
|
namespace React.JSX {
|
|
1103
1104
|
interface IntrinsicElements {
|
|
1104
|
-
'descope-recovery-codes': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
1105
|
+
'descope-recovery-codes': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$2>;
|
|
1105
1106
|
}
|
|
1106
1107
|
}
|
|
1107
1108
|
}
|
|
1108
|
-
declare const RecoveryCodesList: React.ForwardRefExoticComponent<Props$
|
|
1109
|
+
declare const RecoveryCodesList: React.ForwardRefExoticComponent<Props$2 & React.RefAttributes<HTMLDivElement>>;
|
|
1109
1110
|
|
|
1110
1111
|
declare global {
|
|
1111
1112
|
namespace React.JSX {
|
|
1112
1113
|
interface IntrinsicElements {
|
|
1113
|
-
'descope-hcaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props;
|
|
1114
|
+
'descope-hcaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$1;
|
|
1114
1115
|
}
|
|
1115
1116
|
}
|
|
1116
1117
|
}
|
|
1117
|
-
type Props = {
|
|
1118
|
+
type Props$1 = {
|
|
1118
1119
|
connector?: string;
|
|
1119
1120
|
enabled?: boolean;
|
|
1120
1121
|
};
|
|
1121
|
-
declare const Hcaptcha: React.ForwardRefExoticComponent<Props & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
1122
|
+
declare const Hcaptcha: React.ForwardRefExoticComponent<Props$1 & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
1123
|
+
|
|
1124
|
+
type Props = {
|
|
1125
|
+
emptyState?: React.ReactNode;
|
|
1126
|
+
size?: string;
|
|
1127
|
+
data?: any[];
|
|
1128
|
+
readonly?: boolean;
|
|
1129
|
+
};
|
|
1130
|
+
declare global {
|
|
1131
|
+
namespace React.JSX {
|
|
1132
|
+
interface IntrinsicElements {
|
|
1133
|
+
'descope-outbound-apps': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props>;
|
|
1134
|
+
}
|
|
1135
|
+
}
|
|
1136
|
+
}
|
|
1137
|
+
declare const OutboundApps: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>;
|
|
1122
1138
|
|
|
1123
1139
|
interface IComponentThemeManager {
|
|
1124
1140
|
currentThemeName: string;
|
|
@@ -1165,4 +1181,4 @@ type Theme = {
|
|
|
1165
1181
|
};
|
|
1166
1182
|
};
|
|
1167
1183
|
|
|
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 };
|
|
1184
|
+
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, OutboundApps, OutboundAppsClass, 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 };
|