@descope/flow-components 2.0.433 → 2.0.435
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/dts/AddressField/AddressField.d.ts +15 -0
- package/dist/dts/AddressField/index.d.ts +1 -0
- package/dist/dts/index.d.ts +2 -0
- package/dist/index.cjs.js +2354 -1743
- package/dist/index.d.ts +124 -110
- package/dist/index.esm.js +5 -2
- package/dist/types/src/AddressField/AddressField.d.ts +15 -0
- package/dist/types/src/AddressField/index.d.ts +1 -0
- package/dist/types/src/index.d.ts +2 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -51,8 +51,8 @@ declare const Switch: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "r
|
|
|
51
51
|
type BooleanType = {
|
|
52
52
|
type: 'switch' | 'checkbox';
|
|
53
53
|
};
|
|
54
|
-
type Props$
|
|
55
|
-
declare const Boolean: React.ForwardRefExoticComponent<Omit<Props$
|
|
54
|
+
type Props$F = React.ComponentProps<typeof Checkbox> & React.ComponentProps<typeof Switch> & BooleanType;
|
|
55
|
+
declare const Boolean: React.ForwardRefExoticComponent<Omit<Props$F, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
56
56
|
|
|
57
57
|
declare global {
|
|
58
58
|
namespace React.JSX {
|
|
@@ -76,17 +76,17 @@ declare const Button: React.ForwardRefExoticComponent<Omit<React.ClassAttributes
|
|
|
76
76
|
'full-width'?: boolean;
|
|
77
77
|
}, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
78
78
|
|
|
79
|
-
type Props$
|
|
79
|
+
type Props$E = {
|
|
80
80
|
digits?: number;
|
|
81
81
|
};
|
|
82
82
|
declare global {
|
|
83
83
|
namespace React.JSX {
|
|
84
84
|
interface IntrinsicElements {
|
|
85
|
-
'descope-passcode': DescopeInputProps & Props$
|
|
85
|
+
'descope-passcode': DescopeInputProps & Props$E;
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
|
-
declare const Code: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$
|
|
89
|
+
declare const Code: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$E, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
90
90
|
|
|
91
91
|
type Never<T extends Record<string, any>> = {
|
|
92
92
|
[K in keyof T]: never;
|
|
@@ -102,7 +102,7 @@ type ContainerAlignment = {
|
|
|
102
102
|
'vertical-alignment'?: FlexAlignment;
|
|
103
103
|
'space-between'?: 'sm' | 'md' | 'lg';
|
|
104
104
|
};
|
|
105
|
-
type Props$
|
|
105
|
+
type Props$D = {
|
|
106
106
|
direction?: 'row' | 'column';
|
|
107
107
|
shadow?: 'md' | 'lg' | 'xl' | '2xl';
|
|
108
108
|
borderRadius?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl';
|
|
@@ -120,9 +120,9 @@ declare global {
|
|
|
120
120
|
}
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
|
-
declare const Container: React.ForwardRefExoticComponent<(Props$
|
|
123
|
+
declare const Container: React.ForwardRefExoticComponent<(Props$D & React.HTMLAttributes<HTMLDivElement>) & React.RefAttributes<HTMLDivElement>>;
|
|
124
124
|
|
|
125
|
-
type Props$
|
|
125
|
+
type Props$C = {
|
|
126
126
|
vertical?: boolean;
|
|
127
127
|
italic?: boolean;
|
|
128
128
|
variant?: TypographyVariants;
|
|
@@ -132,15 +132,15 @@ type Props$B = {
|
|
|
132
132
|
declare global {
|
|
133
133
|
namespace React.JSX {
|
|
134
134
|
interface IntrinsicElements {
|
|
135
|
-
'descope-divider': React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & Omit<Props$
|
|
135
|
+
'descope-divider': React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & Omit<Props$C, 'children'>;
|
|
136
136
|
}
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
|
-
declare const Divider: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "size"> & Props$
|
|
139
|
+
declare const Divider: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "size"> & Props$C, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
140
140
|
|
|
141
141
|
declare const ReactComponent: (props: SVGProps) => React.JSX.Element;
|
|
142
142
|
|
|
143
|
-
type Props$
|
|
143
|
+
type Props$B = {
|
|
144
144
|
width?: string;
|
|
145
145
|
height?: string;
|
|
146
146
|
alt?: string;
|
|
@@ -149,15 +149,15 @@ type Props$A = {
|
|
|
149
149
|
declare global {
|
|
150
150
|
namespace React.JSX {
|
|
151
151
|
interface IntrinsicElements {
|
|
152
|
-
'descope-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
152
|
+
'descope-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$B;
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
|
-
declare const Image: React.ForwardRefExoticComponent<Props$
|
|
156
|
+
declare const Image: React.ForwardRefExoticComponent<Props$B & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
157
157
|
|
|
158
158
|
declare const Input: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
159
159
|
|
|
160
|
-
type Props$
|
|
160
|
+
type Props$A = {
|
|
161
161
|
href?: string | undefined;
|
|
162
162
|
italic?: boolean;
|
|
163
163
|
variant?: TypographyVariants;
|
|
@@ -169,18 +169,18 @@ type Props$z = {
|
|
|
169
169
|
declare global {
|
|
170
170
|
namespace React.JSX {
|
|
171
171
|
interface IntrinsicElements {
|
|
172
|
-
'descope-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> & Omit<Props$
|
|
172
|
+
'descope-link': React.DetailedHTMLProps<React.HTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement> & Omit<Props$A, 'children'>;
|
|
173
173
|
}
|
|
174
174
|
}
|
|
175
175
|
}
|
|
176
|
-
declare const Link: React.ForwardRefExoticComponent<Props$
|
|
176
|
+
declare const Link: React.ForwardRefExoticComponent<Props$A & React.RefAttributes<HTMLAnchorElement>>;
|
|
177
177
|
|
|
178
|
-
type Props$
|
|
178
|
+
type Props$z = {
|
|
179
179
|
variant?: 'linear' | 'radial';
|
|
180
180
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
181
181
|
color?: Mode;
|
|
182
182
|
};
|
|
183
|
-
type LoaderType = React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
183
|
+
type LoaderType = React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$z>;
|
|
184
184
|
declare global {
|
|
185
185
|
namespace React.JSX {
|
|
186
186
|
interface IntrinsicElements {
|
|
@@ -189,22 +189,22 @@ declare global {
|
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
|
-
declare const Loader: React.ForwardRefExoticComponent<Props$
|
|
192
|
+
declare const Loader: React.ForwardRefExoticComponent<Props$z & React.RefAttributes<HTMLDivElement>>;
|
|
193
193
|
|
|
194
|
-
type Props$
|
|
194
|
+
type Props$y = {
|
|
195
195
|
width?: string;
|
|
196
196
|
height?: string;
|
|
197
197
|
};
|
|
198
198
|
declare global {
|
|
199
199
|
namespace React.JSX {
|
|
200
200
|
interface IntrinsicElements {
|
|
201
|
-
'descope-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
201
|
+
'descope-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$y>;
|
|
202
202
|
}
|
|
203
203
|
}
|
|
204
204
|
}
|
|
205
|
-
declare const Logo: React.ForwardRefExoticComponent<Props$
|
|
205
|
+
declare const Logo: React.ForwardRefExoticComponent<Props$y & React.RefAttributes<HTMLDivElement>>;
|
|
206
206
|
|
|
207
|
-
type Props$
|
|
207
|
+
type Props$x = {
|
|
208
208
|
'password-label'?: string;
|
|
209
209
|
'password-placeholder'?: string;
|
|
210
210
|
'confirm-label'?: string;
|
|
@@ -230,11 +230,11 @@ type Props$w = {
|
|
|
230
230
|
declare global {
|
|
231
231
|
namespace React.JSX {
|
|
232
232
|
interface IntrinsicElements {
|
|
233
|
-
'descope-new-password': DescopeInputProps & Props$
|
|
233
|
+
'descope-new-password': DescopeInputProps & Props$x;
|
|
234
234
|
}
|
|
235
235
|
}
|
|
236
236
|
}
|
|
237
|
-
declare const NewPassword: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$
|
|
237
|
+
declare const NewPassword: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$x, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
238
238
|
|
|
239
239
|
declare global {
|
|
240
240
|
namespace React.JSX {
|
|
@@ -254,16 +254,16 @@ declare global {
|
|
|
254
254
|
}
|
|
255
255
|
declare const Password: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
256
256
|
|
|
257
|
-
type Props$
|
|
257
|
+
type Props$w = {
|
|
258
258
|
variant: 'countrySelection' | 'inputBox';
|
|
259
259
|
'default-code'?: string;
|
|
260
260
|
'phone-input-placeholder'?: string;
|
|
261
261
|
'country-input-placeholder'?: string;
|
|
262
262
|
'restrict-countries'?: string;
|
|
263
263
|
} & DescopeInputProps;
|
|
264
|
-
declare const Phone: React.ForwardRefExoticComponent<Omit<Props$
|
|
264
|
+
declare const Phone: React.ForwardRefExoticComponent<Omit<Props$w, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
265
265
|
|
|
266
|
-
type Props$
|
|
266
|
+
type Props$v = {
|
|
267
267
|
children?: React.JSX.Element[];
|
|
268
268
|
data?: string | Record<string, string>[];
|
|
269
269
|
};
|
|
@@ -276,9 +276,9 @@ declare global {
|
|
|
276
276
|
}
|
|
277
277
|
}
|
|
278
278
|
}
|
|
279
|
-
declare const Select: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$
|
|
279
|
+
declare const Select: React.ForwardRefExoticComponent<Omit<HTMLInputAttrs & DescopeInputExtraProps & Props$v, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
280
280
|
|
|
281
|
-
type Props$
|
|
281
|
+
type Props$u = {
|
|
282
282
|
italic?: boolean;
|
|
283
283
|
variant?: string;
|
|
284
284
|
mode?: string;
|
|
@@ -290,14 +290,14 @@ type Props$t = {
|
|
|
290
290
|
declare global {
|
|
291
291
|
namespace React.JSX {
|
|
292
292
|
interface IntrinsicElements {
|
|
293
|
-
'descope-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
294
|
-
'descope-enriched-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
293
|
+
'descope-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$u;
|
|
294
|
+
'descope-enriched-text': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$u & {
|
|
295
295
|
readonly?: boolean;
|
|
296
296
|
};
|
|
297
297
|
}
|
|
298
298
|
}
|
|
299
299
|
}
|
|
300
|
-
declare const Text: React.ForwardRefExoticComponent<Omit<Props$
|
|
300
|
+
declare const Text: React.ForwardRefExoticComponent<Omit<Props$u & {
|
|
301
301
|
typography?: TypographyVariants;
|
|
302
302
|
} & Omit<React.HTMLProps<HTMLSpanElement>, "mode">, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
303
303
|
|
|
@@ -319,39 +319,39 @@ declare global {
|
|
|
319
319
|
}
|
|
320
320
|
declare const TextField: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
321
321
|
|
|
322
|
-
type Props$
|
|
322
|
+
type Props$t = {
|
|
323
323
|
width?: string;
|
|
324
324
|
height?: string;
|
|
325
325
|
};
|
|
326
326
|
declare global {
|
|
327
327
|
namespace React.JSX {
|
|
328
328
|
interface IntrinsicElements {
|
|
329
|
-
'descope-totp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
329
|
+
'descope-totp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$t>;
|
|
330
330
|
}
|
|
331
331
|
}
|
|
332
332
|
}
|
|
333
|
-
declare const TOTPImage: React.ForwardRefExoticComponent<Props$
|
|
333
|
+
declare const TOTPImage: React.ForwardRefExoticComponent<Props$t & React.RefAttributes<HTMLDivElement>>;
|
|
334
334
|
|
|
335
|
-
type Props$
|
|
336
|
-
declare const TOTPLink: React.ForwardRefExoticComponent<Omit<Props$
|
|
335
|
+
type Props$s = Omit<React.ComponentProps<typeof Link>, 'href'>;
|
|
336
|
+
declare const TOTPLink: React.ForwardRefExoticComponent<Omit<Props$s, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
337
337
|
|
|
338
|
-
type Props$
|
|
338
|
+
type Props$r = {
|
|
339
339
|
width?: string;
|
|
340
340
|
height?: string;
|
|
341
341
|
};
|
|
342
342
|
declare global {
|
|
343
343
|
namespace React.JSX {
|
|
344
344
|
interface IntrinsicElements {
|
|
345
|
-
'descope-notp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
345
|
+
'descope-notp-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$r>;
|
|
346
346
|
}
|
|
347
347
|
}
|
|
348
348
|
}
|
|
349
|
-
declare const NOTPImage: React.ForwardRefExoticComponent<Props$
|
|
349
|
+
declare const NOTPImage: React.ForwardRefExoticComponent<Props$r & React.RefAttributes<HTMLDivElement>>;
|
|
350
350
|
|
|
351
|
-
type Props$
|
|
352
|
-
declare const NOTPLink: React.ForwardRefExoticComponent<Omit<Props$
|
|
351
|
+
type Props$q = Omit<React.ComponentProps<typeof Link>, 'href'>;
|
|
352
|
+
declare const NOTPLink: React.ForwardRefExoticComponent<Omit<Props$q, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
353
353
|
|
|
354
|
-
type Props$
|
|
354
|
+
type Props$p = {
|
|
355
355
|
title?: string;
|
|
356
356
|
description?: string;
|
|
357
357
|
icon?: string;
|
|
@@ -370,13 +370,13 @@ type Props$o = {
|
|
|
370
370
|
declare global {
|
|
371
371
|
namespace React.JSX {
|
|
372
372
|
interface IntrinsicElements {
|
|
373
|
-
'descope-upload-file': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
373
|
+
'descope-upload-file': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$p;
|
|
374
374
|
}
|
|
375
375
|
}
|
|
376
376
|
}
|
|
377
|
-
declare const UploadFile: React.ForwardRefExoticComponent<Props$
|
|
377
|
+
declare const UploadFile: React.ForwardRefExoticComponent<Props$p & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
378
378
|
|
|
379
|
-
type Props$
|
|
379
|
+
type Props$o = {
|
|
380
380
|
enabled?: boolean;
|
|
381
381
|
'site-key'?: string;
|
|
382
382
|
enterprise?: boolean;
|
|
@@ -395,13 +395,13 @@ declare global {
|
|
|
395
395
|
}
|
|
396
396
|
namespace React.JSX {
|
|
397
397
|
interface IntrinsicElements {
|
|
398
|
-
'descope-recaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
398
|
+
'descope-recaptcha': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$o;
|
|
399
399
|
}
|
|
400
400
|
}
|
|
401
401
|
}
|
|
402
|
-
declare const Recaptcha: React.ForwardRefExoticComponent<Props$
|
|
402
|
+
declare const Recaptcha: React.ForwardRefExoticComponent<Props$o & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
403
403
|
|
|
404
|
-
type Props$
|
|
404
|
+
type Props$n = {
|
|
405
405
|
connector?: string;
|
|
406
406
|
enterprise?: boolean;
|
|
407
407
|
action?: string;
|
|
@@ -412,16 +412,16 @@ type Props$m = {
|
|
|
412
412
|
'full-width'?: boolean;
|
|
413
413
|
readOnly?: boolean;
|
|
414
414
|
};
|
|
415
|
-
declare const RecaptchaV2: React.ForwardRefExoticComponent<Props$
|
|
415
|
+
declare const RecaptchaV2: React.ForwardRefExoticComponent<Props$n & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
416
416
|
|
|
417
|
-
type Props$
|
|
417
|
+
type Props$m = DescopeInputProps & {
|
|
418
418
|
'default-value'?: string;
|
|
419
419
|
'allow-deselect'?: boolean;
|
|
420
420
|
};
|
|
421
421
|
declare global {
|
|
422
422
|
namespace React.JSX {
|
|
423
423
|
interface IntrinsicElements {
|
|
424
|
-
'descope-button-selection-group': Props$
|
|
424
|
+
'descope-button-selection-group': Props$m;
|
|
425
425
|
'descope-button-selection-group-item': React.JSX.IntrinsicElements['span'] & {
|
|
426
426
|
value: string;
|
|
427
427
|
children: string;
|
|
@@ -447,10 +447,10 @@ type SingleSelectType = {
|
|
|
447
447
|
layout?: 'horizontal' | 'vertical';
|
|
448
448
|
'label-type'?: LabelType;
|
|
449
449
|
};
|
|
450
|
-
type Props$
|
|
451
|
-
declare const SingleSelect: React.ForwardRefExoticComponent<Omit<Props$
|
|
450
|
+
type Props$l = Omit<React.ComponentProps<typeof ButtonSelectionGroup>, 'allow-deselect'> & SingleSelectType;
|
|
451
|
+
declare const SingleSelect: React.ForwardRefExoticComponent<Omit<Props$l, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
452
452
|
|
|
453
|
-
type Props$
|
|
453
|
+
type Props$k = DescopeInputProps & {
|
|
454
454
|
'default-value'?: string;
|
|
455
455
|
'item-label-path'?: string;
|
|
456
456
|
'item-value-path'?: string;
|
|
@@ -458,7 +458,7 @@ type Props$j = DescopeInputProps & {
|
|
|
458
458
|
declare global {
|
|
459
459
|
namespace React.JSX {
|
|
460
460
|
interface IntrinsicElements {
|
|
461
|
-
'descope-combobox': Props$
|
|
461
|
+
'descope-combobox': Props$k;
|
|
462
462
|
}
|
|
463
463
|
}
|
|
464
464
|
}
|
|
@@ -480,7 +480,7 @@ type Column = {
|
|
|
480
480
|
resizable: boolean;
|
|
481
481
|
};
|
|
482
482
|
};
|
|
483
|
-
type Props$
|
|
483
|
+
type Props$j = {
|
|
484
484
|
identifier: any;
|
|
485
485
|
children?: React.JSX.Element[];
|
|
486
486
|
size?: Omit<ComponentSize, 'xl'>;
|
|
@@ -496,7 +496,7 @@ declare global {
|
|
|
496
496
|
}
|
|
497
497
|
}
|
|
498
498
|
}
|
|
499
|
-
declare const Grid: React.ForwardRefExoticComponent<Props$
|
|
499
|
+
declare const Grid: React.ForwardRefExoticComponent<Props$j & React.RefAttributes<HTMLInputElement>>;
|
|
500
500
|
|
|
501
501
|
type ColumnProps = {
|
|
502
502
|
sortable?: boolean;
|
|
@@ -545,7 +545,7 @@ declare global {
|
|
|
545
545
|
}
|
|
546
546
|
declare const GridItemDetailsColumn: React.ForwardRefExoticComponent<ColumnProps & React.RefAttributes<HTMLInputElement>>;
|
|
547
547
|
|
|
548
|
-
type Props$
|
|
548
|
+
type Props$i = {
|
|
549
549
|
mode?: string;
|
|
550
550
|
size?: string;
|
|
551
551
|
bordered?: boolean;
|
|
@@ -554,11 +554,11 @@ type Props$h = {
|
|
|
554
554
|
declare global {
|
|
555
555
|
namespace React.JSX {
|
|
556
556
|
interface IntrinsicElements {
|
|
557
|
-
'descope-badge': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
557
|
+
'descope-badge': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$i;
|
|
558
558
|
}
|
|
559
559
|
}
|
|
560
560
|
}
|
|
561
|
-
declare const Badge: React.ForwardRefExoticComponent<Props$
|
|
561
|
+
declare const Badge: React.ForwardRefExoticComponent<Props$i & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
562
562
|
|
|
563
563
|
declare global {
|
|
564
564
|
namespace React.JSX {
|
|
@@ -567,12 +567,12 @@ declare global {
|
|
|
567
567
|
}
|
|
568
568
|
}
|
|
569
569
|
}
|
|
570
|
-
type Props$
|
|
570
|
+
type Props$h = {
|
|
571
571
|
opened?: boolean;
|
|
572
572
|
};
|
|
573
|
-
declare const Modal: React.ForwardRefExoticComponent<Props$
|
|
573
|
+
declare const Modal: React.ForwardRefExoticComponent<Props$h & React.RefAttributes<HTMLDivElement>>;
|
|
574
574
|
|
|
575
|
-
type Props$
|
|
575
|
+
type Props$g = DescopeInputProps & {
|
|
576
576
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
577
577
|
'min-items-selection'?: number;
|
|
578
578
|
'max-items-selection'?: number;
|
|
@@ -580,7 +580,7 @@ type Props$f = DescopeInputProps & {
|
|
|
580
580
|
declare global {
|
|
581
581
|
namespace React.JSX {
|
|
582
582
|
interface IntrinsicElements {
|
|
583
|
-
'descope-button-multi-selection-group': Props$
|
|
583
|
+
'descope-button-multi-selection-group': Props$g & {
|
|
584
584
|
'default-values'?: string;
|
|
585
585
|
};
|
|
586
586
|
'descope-button-selection-group-item': React.JSX.IntrinsicElements['span'] & {
|
|
@@ -607,16 +607,16 @@ type MultiSelectType = {
|
|
|
607
607
|
'max-items-selection'?: number;
|
|
608
608
|
'label-type'?: string;
|
|
609
609
|
};
|
|
610
|
-
type Props$
|
|
610
|
+
type Props$f = Omit<React.ComponentProps<typeof ButtonMultiSelectionGroup>, 'default-values'> & MultiSelectType & {
|
|
611
611
|
'default-values'?: string[];
|
|
612
612
|
};
|
|
613
|
-
declare const MultiSelect: React.ForwardRefExoticComponent<Omit<Props$
|
|
613
|
+
declare const MultiSelect: React.ForwardRefExoticComponent<Omit<Props$f, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
614
614
|
|
|
615
615
|
type Item$2 = {
|
|
616
616
|
label: string;
|
|
617
617
|
value: string;
|
|
618
618
|
};
|
|
619
|
-
type Props$
|
|
619
|
+
type Props$e = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'helper-text' | 'data-errormessage-pattern-mismatch' | 'data-errormessage-value-missing'> & {
|
|
620
620
|
'label-value'?: string;
|
|
621
621
|
'label-attr'?: string;
|
|
622
622
|
'button-label'?: string;
|
|
@@ -628,20 +628,20 @@ type Props$d = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'h
|
|
|
628
628
|
declare global {
|
|
629
629
|
namespace React.JSX {
|
|
630
630
|
interface IntrinsicElements {
|
|
631
|
-
'descope-mappings-field': Omit<Props$
|
|
631
|
+
'descope-mappings-field': Omit<Props$e, 'default-values' | 'options'> & {
|
|
632
632
|
'default-values'?: string;
|
|
633
633
|
options?: string;
|
|
634
634
|
};
|
|
635
635
|
}
|
|
636
636
|
}
|
|
637
637
|
}
|
|
638
|
-
declare const MappingsField: React.ForwardRefExoticComponent<Omit<Props$
|
|
638
|
+
declare const MappingsField: React.ForwardRefExoticComponent<Omit<Props$e, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
639
639
|
|
|
640
640
|
type Item$1 = {
|
|
641
641
|
label: string;
|
|
642
642
|
value: string;
|
|
643
643
|
};
|
|
644
|
-
type Props$
|
|
644
|
+
type Props$d = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'helper-text' | 'data-errormessage-pattern-mismatch' | 'data-errormessage-value-missing'> & {
|
|
645
645
|
'label-value'?: string;
|
|
646
646
|
'label-attr'?: string;
|
|
647
647
|
'label-group'?: string;
|
|
@@ -653,13 +653,13 @@ type Props$c = Omit<DescopeInputProps, 'bordered' | 'label' | 'placeholder' | 'h
|
|
|
653
653
|
declare global {
|
|
654
654
|
namespace React.JSX {
|
|
655
655
|
interface IntrinsicElements {
|
|
656
|
-
'descope-saml-group-mappings': Omit<Props$
|
|
656
|
+
'descope-saml-group-mappings': Omit<Props$d, 'options'> & {
|
|
657
657
|
options?: string;
|
|
658
658
|
};
|
|
659
659
|
}
|
|
660
660
|
}
|
|
661
661
|
}
|
|
662
|
-
declare const SAMLGroupMappings: React.ForwardRefExoticComponent<Omit<Props$
|
|
662
|
+
declare const SAMLGroupMappings: React.ForwardRefExoticComponent<Omit<Props$d, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
663
663
|
|
|
664
664
|
declare global {
|
|
665
665
|
namespace React.JSX {
|
|
@@ -680,7 +680,7 @@ declare const UserAuthMethod: React.ForwardRefExoticComponent<Omit<React.ClassAt
|
|
|
680
680
|
buttonIcon?: string;
|
|
681
681
|
}, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
682
682
|
|
|
683
|
-
type Props$
|
|
683
|
+
type Props$c = {
|
|
684
684
|
'badge-tooltip-text'?: string;
|
|
685
685
|
'badge-label'?: string;
|
|
686
686
|
value?: string;
|
|
@@ -692,13 +692,13 @@ type Props$b = {
|
|
|
692
692
|
declare global {
|
|
693
693
|
namespace React.JSX {
|
|
694
694
|
interface IntrinsicElements {
|
|
695
|
-
'descope-user-attribute': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
695
|
+
'descope-user-attribute': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$c;
|
|
696
696
|
}
|
|
697
697
|
}
|
|
698
698
|
}
|
|
699
|
-
declare const UserAttribute: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$
|
|
699
|
+
declare const UserAttribute: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$c, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
700
700
|
|
|
701
|
-
type Props$
|
|
701
|
+
type Props$b = {
|
|
702
702
|
img?: string;
|
|
703
703
|
'display-name'?: string;
|
|
704
704
|
size?: string;
|
|
@@ -707,26 +707,26 @@ type Props$a = {
|
|
|
707
707
|
declare global {
|
|
708
708
|
namespace React.JSX {
|
|
709
709
|
interface IntrinsicElements {
|
|
710
|
-
'descope-avatar': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
710
|
+
'descope-avatar': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$b;
|
|
711
711
|
}
|
|
712
712
|
}
|
|
713
713
|
}
|
|
714
|
-
declare const Avatar: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$
|
|
714
|
+
declare const Avatar: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & Props$b, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
715
715
|
|
|
716
|
-
type Props$
|
|
716
|
+
type Props$a = {
|
|
717
717
|
lang?: 'xml' | 'html' | 'javascript' | 'css' | 'json';
|
|
718
718
|
inline?: boolean;
|
|
719
719
|
};
|
|
720
720
|
declare global {
|
|
721
721
|
namespace React.JSX {
|
|
722
722
|
interface IntrinsicElements {
|
|
723
|
-
'descope-code-snippet': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$
|
|
723
|
+
'descope-code-snippet': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$a;
|
|
724
724
|
}
|
|
725
725
|
}
|
|
726
726
|
}
|
|
727
|
-
declare const CodeSnippet: React.ForwardRefExoticComponent<Props$
|
|
727
|
+
declare const CodeSnippet: React.ForwardRefExoticComponent<Props$a & React.HTMLAttributes<HTMLElement> & React.RefAttributes<HTMLElement>>;
|
|
728
728
|
|
|
729
|
-
type Props$
|
|
729
|
+
type Props$9 = {
|
|
730
730
|
emptyState?: React.ReactNode;
|
|
731
731
|
children?: React.ReactNode[];
|
|
732
732
|
variant?: 'list' | 'tiles';
|
|
@@ -734,26 +734,26 @@ type Props$8 = {
|
|
|
734
734
|
declare global {
|
|
735
735
|
namespace React.JSX {
|
|
736
736
|
interface IntrinsicElements {
|
|
737
|
-
'descope-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
737
|
+
'descope-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$9>;
|
|
738
738
|
}
|
|
739
739
|
}
|
|
740
740
|
}
|
|
741
|
-
declare const List: React.ForwardRefExoticComponent<Props$
|
|
741
|
+
declare const List: React.ForwardRefExoticComponent<Props$9 & React.RefAttributes<HTMLDivElement>>;
|
|
742
742
|
|
|
743
|
-
type Props$
|
|
743
|
+
type Props$8 = {
|
|
744
744
|
variant?: 'row' | 'tile';
|
|
745
745
|
children?: React.ReactNode;
|
|
746
746
|
};
|
|
747
747
|
declare global {
|
|
748
748
|
namespace React.JSX {
|
|
749
749
|
interface IntrinsicElements {
|
|
750
|
-
'descope-list-item': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
750
|
+
'descope-list-item': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$8>;
|
|
751
751
|
}
|
|
752
752
|
}
|
|
753
753
|
}
|
|
754
|
-
declare const ListItem: React.ForwardRefExoticComponent<Props$
|
|
754
|
+
declare const ListItem: React.ForwardRefExoticComponent<Props$8 & React.RefAttributes<HTMLDivElement>>;
|
|
755
755
|
|
|
756
|
-
type Props$
|
|
756
|
+
type Props$7 = {
|
|
757
757
|
emptyState?: React.ReactNode;
|
|
758
758
|
variant?: 'list' | 'tiles';
|
|
759
759
|
data?: any[];
|
|
@@ -762,18 +762,18 @@ type Props$6 = {
|
|
|
762
762
|
declare global {
|
|
763
763
|
namespace React.JSX {
|
|
764
764
|
interface IntrinsicElements {
|
|
765
|
-
'descope-apps-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
765
|
+
'descope-apps-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$7>;
|
|
766
766
|
}
|
|
767
767
|
}
|
|
768
768
|
}
|
|
769
|
-
declare const AppsList: React.ForwardRefExoticComponent<Props$
|
|
769
|
+
declare const AppsList: React.ForwardRefExoticComponent<Props$7 & React.RefAttributes<HTMLDivElement>>;
|
|
770
770
|
|
|
771
771
|
type Item = {
|
|
772
772
|
desc: string;
|
|
773
773
|
id: string;
|
|
774
774
|
required?: boolean;
|
|
775
775
|
};
|
|
776
|
-
type Props$
|
|
776
|
+
type Props$6 = {
|
|
777
777
|
variant?: 'checkbox' | 'switch';
|
|
778
778
|
data?: Item[];
|
|
779
779
|
readonly?: boolean;
|
|
@@ -782,17 +782,17 @@ type Props$5 = {
|
|
|
782
782
|
declare global {
|
|
783
783
|
namespace React.JSX {
|
|
784
784
|
interface IntrinsicElements {
|
|
785
|
-
'descope-scopes-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
785
|
+
'descope-scopes-list': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$6>;
|
|
786
786
|
}
|
|
787
787
|
}
|
|
788
788
|
}
|
|
789
|
-
declare const ScopesList: React.ForwardRefExoticComponent<Props$
|
|
789
|
+
declare const ScopesList: React.ForwardRefExoticComponent<Props$6 & React.RefAttributes<HTMLDivElement>>;
|
|
790
790
|
|
|
791
791
|
type Question$1 = {
|
|
792
792
|
id: string;
|
|
793
793
|
text: string;
|
|
794
794
|
};
|
|
795
|
-
type Props$
|
|
795
|
+
type Props$5 = {
|
|
796
796
|
questions?: Question$1[];
|
|
797
797
|
readonly?: boolean;
|
|
798
798
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -807,17 +807,17 @@ type Props$4 = {
|
|
|
807
807
|
declare global {
|
|
808
808
|
namespace React.JSX {
|
|
809
809
|
interface IntrinsicElements {
|
|
810
|
-
'descope-security-questions-setup': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
810
|
+
'descope-security-questions-setup': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$5>;
|
|
811
811
|
}
|
|
812
812
|
}
|
|
813
813
|
}
|
|
814
|
-
declare const SecurityQuestionsSetup: React.ForwardRefExoticComponent<Props$
|
|
814
|
+
declare const SecurityQuestionsSetup: React.ForwardRefExoticComponent<Props$5 & React.RefAttributes<HTMLDivElement>>;
|
|
815
815
|
|
|
816
816
|
type Question = {
|
|
817
817
|
id: string;
|
|
818
818
|
text: string;
|
|
819
819
|
};
|
|
820
|
-
type Props$
|
|
820
|
+
type Props$4 = {
|
|
821
821
|
questions?: Question[];
|
|
822
822
|
readonly?: boolean;
|
|
823
823
|
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -831,23 +831,23 @@ type Props$3 = {
|
|
|
831
831
|
declare global {
|
|
832
832
|
namespace React.JSX {
|
|
833
833
|
interface IntrinsicElements {
|
|
834
|
-
'descope-security-questions-verify': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
834
|
+
'descope-security-questions-verify': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$4>;
|
|
835
835
|
}
|
|
836
836
|
}
|
|
837
837
|
}
|
|
838
|
-
declare const SecurityQuestionsVerify: React.ForwardRefExoticComponent<Props$
|
|
838
|
+
declare const SecurityQuestionsVerify: React.ForwardRefExoticComponent<Props$4 & React.RefAttributes<HTMLDivElement>>;
|
|
839
839
|
|
|
840
|
-
type Props$
|
|
840
|
+
type Props$3 = {
|
|
841
841
|
size: 'xs' | 'sm' | 'md' | 'lg';
|
|
842
842
|
};
|
|
843
843
|
declare global {
|
|
844
844
|
namespace React.JSX {
|
|
845
845
|
interface IntrinsicElements {
|
|
846
|
-
'descope-third-party-app-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$
|
|
846
|
+
'descope-third-party-app-logo': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & PropsToAttrs<Props$3>;
|
|
847
847
|
}
|
|
848
848
|
}
|
|
849
849
|
}
|
|
850
|
-
declare const ThirdPartyAppLogo: React.ForwardRefExoticComponent<Props$
|
|
850
|
+
declare const ThirdPartyAppLogo: React.ForwardRefExoticComponent<Props$3 & React.RefAttributes<HTMLDivElement>>;
|
|
851
851
|
|
|
852
852
|
declare global {
|
|
853
853
|
namespace React.JSX {
|
|
@@ -858,7 +858,7 @@ declare global {
|
|
|
858
858
|
}
|
|
859
859
|
declare const DateField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input">, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
860
860
|
|
|
861
|
-
type Props$
|
|
861
|
+
type Props$2 = {
|
|
862
862
|
variant?: 'countrySelection' | 'inputBox';
|
|
863
863
|
'default-code'?: string;
|
|
864
864
|
'phone-input-label'?: string;
|
|
@@ -879,7 +879,7 @@ type Props$1 = {
|
|
|
879
879
|
declare global {
|
|
880
880
|
namespace React.JSX {
|
|
881
881
|
interface IntrinsicElements {
|
|
882
|
-
'descope-hybrid-field': React.DetailedHTMLProps<React.HTMLAttributes<HTMLInputElement>, HTMLInputElement> & PropsToAttrs<Props$
|
|
882
|
+
'descope-hybrid-field': React.DetailedHTMLProps<React.HTMLAttributes<HTMLInputElement>, HTMLInputElement> & PropsToAttrs<Props$2>;
|
|
883
883
|
}
|
|
884
884
|
}
|
|
885
885
|
}
|
|
@@ -902,7 +902,7 @@ declare const HybridField: React.ForwardRefExoticComponent<Omit<React.ClassAttri
|
|
|
902
902
|
'external-input'?: boolean;
|
|
903
903
|
} & HTMLInputAttrs & DescopeInputExtraProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
904
904
|
|
|
905
|
-
type Props = {
|
|
905
|
+
type Props$1 = {
|
|
906
906
|
mode?: string;
|
|
907
907
|
variant?: string;
|
|
908
908
|
bordered?: boolean;
|
|
@@ -914,11 +914,24 @@ type Props = {
|
|
|
914
914
|
declare global {
|
|
915
915
|
namespace React.JSX {
|
|
916
916
|
interface IntrinsicElements {
|
|
917
|
-
'descope-alert': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props;
|
|
917
|
+
'descope-alert': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & Props$1;
|
|
918
|
+
}
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
declare const Alert: React.ForwardRefExoticComponent<Props$1 & React.RefAttributes<HTMLElement>>;
|
|
922
|
+
|
|
923
|
+
type Props = {
|
|
924
|
+
'min-search-length'?: number;
|
|
925
|
+
'allow-custom-value'?: boolean;
|
|
926
|
+
};
|
|
927
|
+
declare global {
|
|
928
|
+
namespace React.JSX {
|
|
929
|
+
interface IntrinsicElements {
|
|
930
|
+
'descope-address-field': Omit<DescopeInputProps, 'external-input'> & Props;
|
|
918
931
|
}
|
|
919
932
|
}
|
|
920
933
|
}
|
|
921
|
-
declare const
|
|
934
|
+
declare const AddressField: React.ForwardRefExoticComponent<Omit<Omit<DescopeInputProps, "external-input"> & Props, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
922
935
|
|
|
923
936
|
type ComponentClass = {
|
|
924
937
|
cssVarList: Record<string, string>;
|
|
@@ -1003,6 +1016,7 @@ declare const SecurityQuestionsSetupClass: ComponentClass;
|
|
|
1003
1016
|
declare const SecurityQuestionsVerifyClass: ComponentClass;
|
|
1004
1017
|
declare const HybridFieldClass: ComponentClass;
|
|
1005
1018
|
declare const AlertClass: ComponentClass;
|
|
1019
|
+
declare const AddressFieldClass: ComponentClass;
|
|
1006
1020
|
|
|
1007
1021
|
type Theme = {
|
|
1008
1022
|
globals: {
|
|
@@ -1027,4 +1041,4 @@ type Theme = {
|
|
|
1027
1041
|
};
|
|
1028
1042
|
};
|
|
1029
1043
|
|
|
1030
|
-
export { Alert, AlertClass, AppsList, AppsListClass, Avatar, AvatarClass, Badge, BadgeClass, Boolean, Button, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, Checkbox, CheckboxClass, Code, CodeSnippet, CodeSnippetClass, ComboBox, ComboBoxClass, 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, TotpImageClass, 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 };
|
|
1044
|
+
export { AddressField, AddressFieldClass, Alert, AlertClass, AppsList, AppsListClass, Avatar, AvatarClass, Badge, BadgeClass, Boolean, Button, ButtonClass, ButtonMultiSelectionGroupClass, ButtonSelectionGroupClass, CalendarClass, Checkbox, CheckboxClass, Code, CodeSnippet, CodeSnippetClass, ComboBox, ComboBoxClass, 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, TotpImageClass, 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 };
|