@coorpacademy/components 11.34.0 → 11.34.2-alpha.73
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/es/molecule/bullet-point-menu-button/index.js +3 -3
- package/es/molecule/bullet-point-menu-button/index.js.map +1 -1
- package/es/molecule/draggable/style.css +1 -3
- package/es/molecule/progress-wrapper/index.d.ts.map +1 -1
- package/es/molecule/progress-wrapper/index.js +10 -5
- package/es/molecule/progress-wrapper/index.js.map +1 -1
- package/es/organism/skill-edition/index.d.ts +52 -1232
- package/es/organism/skill-edition/index.d.ts.map +1 -1
- package/es/organism/skill-edition/index.js +231 -3
- package/es/organism/skill-edition/index.js.map +1 -1
- package/es/organism/skill-edition/types.d.ts +119 -1241
- package/es/organism/skill-edition/types.d.ts.map +1 -1
- package/es/organism/skill-edition/types.js +58 -7
- package/es/organism/skill-edition/types.js.map +1 -1
- package/es/template/back-office/brand-update/index.d.ts +52 -1232
- package/es/template/certification-detail/index.js +3 -2
- package/es/template/certification-detail/index.js.map +1 -1
- package/lib/molecule/bullet-point-menu-button/index.js +3 -3
- package/lib/molecule/bullet-point-menu-button/index.js.map +1 -1
- package/lib/molecule/draggable/style.css +1 -3
- package/lib/molecule/progress-wrapper/index.d.ts.map +1 -1
- package/lib/molecule/progress-wrapper/index.js +10 -5
- package/lib/molecule/progress-wrapper/index.js.map +1 -1
- package/lib/organism/skill-edition/index.d.ts +52 -1232
- package/lib/organism/skill-edition/index.d.ts.map +1 -1
- package/lib/organism/skill-edition/index.js +230 -3
- package/lib/organism/skill-edition/index.js.map +1 -1
- package/lib/organism/skill-edition/types.d.ts +119 -1241
- package/lib/organism/skill-edition/types.d.ts.map +1 -1
- package/lib/organism/skill-edition/types.js +58 -7
- package/lib/organism/skill-edition/types.js.map +1 -1
- package/lib/template/back-office/brand-update/index.d.ts +52 -1232
- package/lib/template/certification-detail/index.js +3 -2
- package/lib/template/certification-detail/index.js.map +1 -1
- package/locales/bs/global.json +13 -11
- package/locales/cs/global.json +8 -6
- package/locales/de/global.json +8 -6
- package/locales/en/global.json +8 -6
- package/locales/es/global.json +8 -6
- package/locales/et/global.json +8 -6
- package/locales/fi/global.json +8 -6
- package/locales/fr/global.json +8 -6
- package/locales/hr/global.json +8 -6
- package/locales/hu/global.json +8 -6
- package/locales/hy/global.json +13 -11
- package/locales/it/global.json +8 -6
- package/locales/ja/global.json +8 -6
- package/locales/ko/global.json +8 -6
- package/locales/nl/global.json +8 -6
- package/locales/pl/global.json +8 -6
- package/locales/pt/global.json +8 -6
- package/locales/ro/global.json +8 -6
- package/locales/ru/global.json +8 -6
- package/locales/sk/global.json +8 -6
- package/locales/sl/global.json +8 -6
- package/locales/sv/global.json +8 -6
- package/locales/tl/global.json +8 -6
- package/locales/tr/global.json +8 -6
- package/locales/uk/global.json +8 -6
- package/locales/vi/global.json +8 -6
- package/locales/zh/global.json +13 -11
- package/locales/zh_TW/global.json +10 -8
- package/package.json +3 -2
- package/locales/.mtslconfig.json +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
2
|
+
import { SkillEditionPropsType } from './types';
|
|
3
3
|
declare const SkillEdition: {
|
|
4
|
-
(props:
|
|
4
|
+
(props: SkillEditionPropsType): JSX.Element;
|
|
5
5
|
propTypes: {
|
|
6
6
|
skillInformations: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
7
7
|
form: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
@@ -418,1243 +418,63 @@ declare const SkillEdition: {
|
|
|
418
418
|
}>>;
|
|
419
419
|
}>>>;
|
|
420
420
|
translations: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
431
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
432
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
433
|
-
position: import("prop-types").Requireable<string>;
|
|
434
|
-
type: import("prop-types").Requireable<string>;
|
|
435
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
436
|
-
name: import("prop-types").Validator<string>;
|
|
437
|
-
color: import("prop-types").Requireable<string>;
|
|
438
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
439
|
-
size: import("prop-types").Requireable<number>;
|
|
440
|
-
customStyle: import("prop-types").Requireable<{
|
|
441
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
442
|
-
}>;
|
|
443
|
-
}>>;
|
|
444
|
-
}>>;
|
|
445
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
446
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
447
|
-
href: import("prop-types").Requireable<string>;
|
|
448
|
-
download: import("prop-types").Requireable<boolean>;
|
|
449
|
-
target: import("prop-types").Requireable<string>;
|
|
450
|
-
}>>;
|
|
451
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
452
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
453
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
454
|
-
className: import("prop-types").Requireable<string>;
|
|
455
|
-
customStyle: import("prop-types").Requireable<{
|
|
456
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
457
|
-
}>;
|
|
458
|
-
}>>;
|
|
459
|
-
selectMultiple: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
460
|
-
title: import("prop-types").Requireable<string>;
|
|
461
|
-
placeholder: import("prop-types").Requireable<string>;
|
|
462
|
-
description: import("prop-types").Requireable<string>;
|
|
463
|
-
hint: import("prop-types").Requireable<string>;
|
|
464
|
-
options: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
|
|
465
|
-
selected: import("prop-types").Validator<boolean>;
|
|
466
|
-
name: import("prop-types").Validator<string>;
|
|
467
|
-
value: import("prop-types").Requireable<string>;
|
|
468
|
-
}>>[]>;
|
|
469
|
-
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
470
|
-
onError: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
471
|
-
multiple: import("prop-types").Requireable<boolean>;
|
|
472
|
-
modified: import("prop-types").Requireable<boolean>;
|
|
473
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
474
|
-
error: import("prop-types").Requireable<string>;
|
|
475
|
-
theme: import("prop-types").Requireable<string>;
|
|
476
|
-
}>>;
|
|
477
|
-
content: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
|
|
478
|
-
items: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
421
|
+
title: import("prop-types").Validator<string>;
|
|
422
|
+
subtitle: import("prop-types").Validator<string>;
|
|
423
|
+
localesOptions: import("prop-types").Validator<(import("prop-types").InferProps<{
|
|
424
|
+
label: import("prop-types").Validator<string>;
|
|
425
|
+
ref: import("prop-types").Validator<string>;
|
|
426
|
+
onClick: import("prop-types").Validator<(...args: any[]) => any>;
|
|
427
|
+
}> | null | undefined)[]>;
|
|
428
|
+
items: import("prop-types").Requireable<{
|
|
429
|
+
[x: string]: NonNullable<import("prop-types").InferProps<{
|
|
479
430
|
title: import("prop-types").Validator<string>;
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
provider: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
483
|
-
label: import("prop-types").Requireable<string>;
|
|
484
|
-
type: import("prop-types").Requireable<string>;
|
|
485
|
-
}>>;
|
|
486
|
-
selected: import("prop-types").Requireable<boolean>;
|
|
487
|
-
selectedColor: import("prop-types").Requireable<string>;
|
|
488
|
-
dataColumns: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
489
|
-
label: import("prop-types").Requireable<string>;
|
|
490
|
-
type: import("prop-types").Requireable<string>;
|
|
491
|
-
className: import("prop-types").Requireable<string>;
|
|
492
|
-
}> | null | undefined)[]>;
|
|
493
|
-
buttonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
494
|
-
type: import("prop-types").Requireable<string>;
|
|
495
|
-
label: import("prop-types").Requireable<string>;
|
|
496
|
-
ariaLabel: import("prop-types").Requireable<string>;
|
|
497
|
-
dataName: import("prop-types").Requireable<string>;
|
|
498
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
499
|
-
position: import("prop-types").Requireable<string>;
|
|
500
|
-
type: import("prop-types").Requireable<string>;
|
|
501
|
-
}>>;
|
|
502
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
503
|
-
}>>;
|
|
504
|
-
secondButtonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
505
|
-
type: import("prop-types").Requireable<string>;
|
|
506
|
-
label: import("prop-types").Requireable<string>;
|
|
507
|
-
ariaLabel: import("prop-types").Requireable<string>;
|
|
508
|
-
dataName: import("prop-types").Requireable<string>;
|
|
509
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
510
|
-
position: import("prop-types").Requireable<string>;
|
|
511
|
-
type: import("prop-types").Requireable<string>;
|
|
512
|
-
}>>;
|
|
513
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
514
|
-
}>>;
|
|
515
|
-
bulletPointMenuButton: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
516
|
-
buttonAriaLabel: import("prop-types").Requireable<string>;
|
|
517
|
-
menuAriaLabel: import("prop-types").Requireable<string>;
|
|
518
|
-
buttons: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
519
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
520
|
-
label: import("prop-types").Requireable<string>;
|
|
521
|
-
type: import("prop-types").Requireable<string>;
|
|
522
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
523
|
-
}> | null | undefined)[]>;
|
|
524
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
525
|
-
}>>;
|
|
526
|
-
tags: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
527
|
-
label: import("prop-types").Requireable<string>;
|
|
528
|
-
type: import("prop-types").Requireable<string>;
|
|
529
|
-
}> | null | undefined)[]>;
|
|
530
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
531
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
532
|
-
isBulkStyle: import("prop-types").Requireable<boolean>;
|
|
533
|
-
isOverflowHidden: import("prop-types").Requireable<boolean>;
|
|
534
|
-
order: import("prop-types").Requireable<number>;
|
|
535
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
536
|
-
contentType: import("prop-types").Requireable<string>;
|
|
537
|
-
id: import("prop-types").Requireable<string>;
|
|
538
|
-
leftIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
539
|
-
iconName: import("prop-types").Requireable<string>;
|
|
540
|
-
iconColor: import("prop-types").Requireable<string>;
|
|
541
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
542
|
-
borderRadius: import("prop-types").Requireable<string>;
|
|
543
|
-
preset: import("prop-types").Requireable<string>;
|
|
544
|
-
gradientBackground: import("prop-types").Requireable<boolean>;
|
|
545
|
-
size: import("prop-types").Requireable<number>;
|
|
546
|
-
wrapperSize: import("prop-types").Requireable<number>;
|
|
547
|
-
}>>;
|
|
548
|
-
image: import("prop-types").Requireable<string>;
|
|
549
|
-
checkbox: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
550
|
-
title: import("prop-types").Requireable<string>;
|
|
551
|
-
name: import("prop-types").Requireable<string>;
|
|
552
|
-
checked: import("prop-types").Requireable<boolean>;
|
|
553
|
-
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
554
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
555
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
556
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
557
|
-
iconName: import("prop-types").Requireable<string>;
|
|
558
|
-
iconColor: import("prop-types").Requireable<string>;
|
|
559
|
-
preset: import("prop-types").Requireable<string>;
|
|
560
|
-
}>>;
|
|
561
|
-
customStyle: import("prop-types").Requireable<{
|
|
562
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
563
|
-
}>;
|
|
564
|
-
}>>;
|
|
565
|
-
}> | null | undefined)[]>;
|
|
566
|
-
type: import("prop-types").Requireable<string>;
|
|
567
|
-
itemType: import("prop-types").Requireable<string>;
|
|
568
|
-
onDrop: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
569
|
-
isDraggable: import("prop-types").Requireable<boolean>;
|
|
570
|
-
tableHeader: import("prop-types").Requireable<(string | null | undefined)[]>;
|
|
571
|
-
emptyResult: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
572
|
-
title: import("prop-types").Requireable<string>;
|
|
573
|
-
description: import("prop-types").Requireable<string>;
|
|
574
|
-
button: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
|
|
575
|
-
type: import("prop-types").Requireable<string>;
|
|
576
|
-
usage: import("prop-types").Requireable<string>;
|
|
577
|
-
label: import("prop-types").Requireable<string>;
|
|
578
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
579
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
580
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
581
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
582
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
583
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
584
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
585
|
-
position: import("prop-types").Requireable<string>;
|
|
586
|
-
type: import("prop-types").Requireable<string>;
|
|
587
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
588
|
-
name: import("prop-types").Validator<string>;
|
|
589
|
-
color: import("prop-types").Requireable<string>;
|
|
590
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
591
|
-
size: import("prop-types").Requireable<number>;
|
|
592
|
-
customStyle: import("prop-types").Requireable<{
|
|
593
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
594
|
-
}>;
|
|
595
|
-
}>>;
|
|
596
|
-
}>>;
|
|
597
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
598
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
599
|
-
href: import("prop-types").Requireable<string>;
|
|
600
|
-
download: import("prop-types").Requireable<boolean>;
|
|
601
|
-
target: import("prop-types").Requireable<string>;
|
|
602
|
-
}>>;
|
|
603
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
604
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
605
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
606
|
-
className: import("prop-types").Requireable<string>;
|
|
607
|
-
customStyle: import("prop-types").Requireable<{
|
|
608
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
609
|
-
}>;
|
|
610
|
-
}> | import("prop-types").InferProps<{
|
|
611
|
-
button: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
612
|
-
type: import("prop-types").Requireable<string>;
|
|
613
|
-
usage: import("prop-types").Requireable<string>;
|
|
614
|
-
label: import("prop-types").Requireable<string>;
|
|
615
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
616
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
617
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
618
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
619
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
620
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
621
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
622
|
-
position: import("prop-types").Requireable<string>;
|
|
623
|
-
type: import("prop-types").Requireable<string>;
|
|
624
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
625
|
-
name: import("prop-types").Validator<string>;
|
|
626
|
-
color: import("prop-types").Requireable<string>;
|
|
627
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
628
|
-
size: import("prop-types").Requireable<number>;
|
|
629
|
-
customStyle: import("prop-types").Requireable<{
|
|
630
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
631
|
-
}>;
|
|
632
|
-
}>>;
|
|
633
|
-
}>>;
|
|
634
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
635
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
636
|
-
href: import("prop-types").Requireable<string>;
|
|
637
|
-
download: import("prop-types").Requireable<boolean>;
|
|
638
|
-
target: import("prop-types").Requireable<string>;
|
|
639
|
-
}>>;
|
|
640
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
641
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
642
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
643
|
-
className: import("prop-types").Requireable<string>;
|
|
644
|
-
customStyle: import("prop-types").Requireable<{
|
|
645
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
646
|
-
}>;
|
|
647
|
-
}>>>;
|
|
648
|
-
menu: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
649
|
-
buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
|
|
650
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
651
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
652
|
-
label: import("prop-types").Validator<string>;
|
|
653
|
-
onClick: import("prop-types").Validator<(...args: any[]) => any>;
|
|
654
|
-
type: import("prop-types").Requireable<string>;
|
|
655
|
-
buttonLinkType: import("prop-types").Requireable<string>;
|
|
656
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
657
|
-
theme: import("prop-types").Requireable<string>;
|
|
658
|
-
position: import("prop-types").Requireable<string>;
|
|
659
|
-
type: import("prop-types").Requireable<string>;
|
|
660
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
661
|
-
name: import("prop-types").Validator<string>;
|
|
662
|
-
color: import("prop-types").Requireable<string>;
|
|
663
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
664
|
-
size: import("prop-types").Requireable<number>;
|
|
665
|
-
customStyle: import("prop-types").Requireable<{
|
|
666
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
667
|
-
}>;
|
|
668
|
-
}>>;
|
|
669
|
-
}>>;
|
|
670
|
-
customStyle: import("prop-types").Requireable<{
|
|
671
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
672
|
-
}>;
|
|
673
|
-
}> | null | undefined)[]>;
|
|
674
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
675
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
676
|
-
}>>>;
|
|
677
|
-
menuWrapper: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
678
|
-
ariaLabel: import("prop-types").Requireable<string>;
|
|
679
|
-
customStyle: import("prop-types").Requireable<{
|
|
680
|
-
[x: string]: NonNullable<string | number | object | null | undefined> | null | undefined;
|
|
681
|
-
}>;
|
|
682
|
-
}>>;
|
|
683
|
-
}> | null | undefined>>;
|
|
431
|
+
onEditClick: import("prop-types").Validator<(...args: any[]) => any>;
|
|
432
|
+
onDeleteClick: import("prop-types").Validator<(...args: any[]) => any>;
|
|
684
433
|
}>>;
|
|
685
|
-
}
|
|
686
|
-
|
|
687
|
-
|
|
434
|
+
}>;
|
|
435
|
+
button: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
436
|
+
label: import("prop-types").Validator<string>;
|
|
437
|
+
onClick: import("prop-types").Validator<(...args: any[]) => any>;
|
|
438
|
+
}>>>;
|
|
439
|
+
}>>>;
|
|
440
|
+
content: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
441
|
+
title: import("prop-types").Validator<string>;
|
|
442
|
+
subtitle: import("prop-types").Validator<string>;
|
|
443
|
+
button: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
444
|
+
label: import("prop-types").Validator<string>;
|
|
445
|
+
onClick: import("prop-types").Validator<(...args: any[]) => any>;
|
|
446
|
+
}>>>;
|
|
447
|
+
list: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
448
|
+
items: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
|
|
449
|
+
ref: import("prop-types").Validator<string>;
|
|
688
450
|
title: import("prop-types").Validator<string>;
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
type: import("prop-types").Requireable<string>;
|
|
693
|
-
current: import("prop-types").Requireable<boolean>;
|
|
694
|
-
selected: import("prop-types").Requireable<boolean>;
|
|
695
|
-
icon: import("prop-types").Requireable<string>;
|
|
696
|
-
value: import("prop-types").Requireable<string>;
|
|
697
|
-
}> | null | undefined> | null | undefined)[]>;
|
|
698
|
-
isRowExpandible: import("prop-types").Requireable<boolean>;
|
|
699
|
-
lastField: import("prop-types").Requireable<NonNullable<string | import("prop-types").InferProps<{
|
|
700
|
-
type: import("prop-types").Requireable<string>;
|
|
701
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
702
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
703
|
-
buttonAriaLabel: import("prop-types").Requireable<string>;
|
|
704
|
-
menuAriaLabel: import("prop-types").Requireable<string>;
|
|
705
|
-
buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
|
|
706
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
707
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
708
|
-
label: import("prop-types").Validator<string>;
|
|
709
|
-
onClick: import("prop-types").Validator<(...args: any[]) => any>;
|
|
710
|
-
type: import("prop-types").Requireable<string>;
|
|
711
|
-
buttonLinkType: import("prop-types").Requireable<string>;
|
|
712
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
713
|
-
theme: import("prop-types").Requireable<string>;
|
|
714
|
-
position: import("prop-types").Requireable<string>;
|
|
715
|
-
type: import("prop-types").Requireable<string>;
|
|
716
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
717
|
-
name: import("prop-types").Validator<string>;
|
|
718
|
-
color: import("prop-types").Requireable<string>;
|
|
719
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
720
|
-
size: import("prop-types").Requireable<number>;
|
|
721
|
-
customStyle: import("prop-types").Requireable<{
|
|
722
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
723
|
-
}>;
|
|
724
|
-
}>>;
|
|
725
|
-
}>>;
|
|
726
|
-
customStyle: import("prop-types").Requireable<{
|
|
727
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
728
|
-
}>;
|
|
729
|
-
}> | null | undefined)[]>;
|
|
730
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
731
|
-
menuButtonClassName: import("prop-types").Requireable<string>;
|
|
732
|
-
isBulkMenu: import("prop-types").Requireable<boolean>;
|
|
733
|
-
}> | null | undefined>>;
|
|
734
|
-
}> | null | undefined)[]>;
|
|
735
|
-
stickyFirstColumn: import("prop-types").Requireable<boolean>;
|
|
736
|
-
stickyLastColumn: import("prop-types").Requireable<boolean>;
|
|
737
|
-
columnWidth: import("prop-types").Requireable<string>;
|
|
738
|
-
ariaDescribedby: import("prop-types").Requireable<string>;
|
|
739
|
-
lastField: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
|
|
740
|
-
componentType: import("prop-types").Requireable<string>;
|
|
741
|
-
type: import("prop-types").Requireable<string>;
|
|
742
|
-
usage: import("prop-types").Requireable<string>;
|
|
743
|
-
label: import("prop-types").Requireable<string>;
|
|
744
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
745
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
746
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
747
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
748
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
749
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
750
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
751
|
-
position: import("prop-types").Requireable<string>;
|
|
752
|
-
type: import("prop-types").Requireable<string>;
|
|
753
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
754
|
-
name: import("prop-types").Validator<string>;
|
|
755
|
-
color: import("prop-types").Requireable<string>;
|
|
756
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
757
|
-
size: import("prop-types").Requireable<number>;
|
|
758
|
-
customStyle: import("prop-types").Requireable<{
|
|
759
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
760
|
-
}>;
|
|
761
|
-
}>>;
|
|
762
|
-
}>>;
|
|
763
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
764
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
765
|
-
href: import("prop-types").Requireable<string>;
|
|
766
|
-
download: import("prop-types").Requireable<boolean>;
|
|
767
|
-
target: import("prop-types").Requireable<string>;
|
|
768
|
-
}>>;
|
|
769
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
770
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
771
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
772
|
-
className: import("prop-types").Requireable<string>;
|
|
773
|
-
customStyle: import("prop-types").Requireable<{
|
|
774
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
775
|
-
}>;
|
|
776
|
-
}> | import("prop-types").InferProps<{
|
|
777
|
-
componentType: import("prop-types").Requireable<string>;
|
|
778
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
779
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
780
|
-
buttonAriaLabel: import("prop-types").Requireable<string>;
|
|
781
|
-
menuAriaLabel: import("prop-types").Requireable<string>;
|
|
782
|
-
buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
|
|
783
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
784
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
451
|
+
subtitle: import("prop-types").Validator<string>;
|
|
452
|
+
image: import("prop-types").Validator<string>;
|
|
453
|
+
tags: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
785
454
|
label: import("prop-types").Validator<string>;
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
}>>;
|
|
802
|
-
}>>;
|
|
803
|
-
customStyle: import("prop-types").Requireable<{
|
|
804
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
805
|
-
}>;
|
|
806
|
-
}> | null | undefined)[]>;
|
|
807
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
808
|
-
menuButtonClassName: import("prop-types").Requireable<string>;
|
|
809
|
-
isBulkMenu: import("prop-types").Requireable<boolean>;
|
|
810
|
-
}> | null | undefined>>;
|
|
811
|
-
isNestedTable: import("prop-types").Requireable<boolean>;
|
|
812
|
-
emptyStateFirstMessage: import("prop-types").Requireable<string>;
|
|
813
|
-
emptyStateSecondMessage: import("prop-types").Requireable<string>;
|
|
814
|
-
}> | null | undefined>>;
|
|
815
|
-
title: import("prop-types").Requireable<NonNullable<string | import("prop-types").InferProps<{
|
|
816
|
-
title: import("prop-types").Requireable<string>;
|
|
817
|
-
subtitle: import("prop-types").Requireable<string>;
|
|
818
|
-
type: import("prop-types").Requireable<string>;
|
|
819
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
820
|
-
titleSize: import("prop-types").Requireable<string>;
|
|
821
|
-
subtitleSize: import("prop-types").Requireable<string>;
|
|
822
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
|
|
823
|
-
tag: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
824
|
-
label: import("prop-types").Requireable<string>;
|
|
825
|
-
type: import("prop-types").Requireable<string>;
|
|
826
|
-
size: import("prop-types").Requireable<string>;
|
|
827
|
-
customStyle: import("prop-types").Requireable<{
|
|
828
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
829
|
-
}>;
|
|
830
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
|
|
831
|
-
}>>;
|
|
832
|
-
button: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
833
|
-
type: import("prop-types").Requireable<string>;
|
|
834
|
-
usage: import("prop-types").Requireable<string>;
|
|
835
|
-
label: import("prop-types").Requireable<string>;
|
|
836
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
837
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
838
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
839
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
840
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
841
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
842
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
843
|
-
position: import("prop-types").Requireable<string>;
|
|
844
|
-
type: import("prop-types").Requireable<string>;
|
|
845
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
846
|
-
name: import("prop-types").Validator<string>;
|
|
847
|
-
color: import("prop-types").Requireable<string>;
|
|
848
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
849
|
-
size: import("prop-types").Requireable<number>;
|
|
850
|
-
customStyle: import("prop-types").Requireable<{
|
|
851
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
852
|
-
}>;
|
|
853
|
-
}>>;
|
|
854
|
-
}>>;
|
|
855
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
856
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
857
|
-
href: import("prop-types").Requireable<string>;
|
|
858
|
-
download: import("prop-types").Requireable<boolean>;
|
|
859
|
-
target: import("prop-types").Requireable<string>;
|
|
860
|
-
}>>;
|
|
861
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
862
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
863
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
864
|
-
className: import("prop-types").Requireable<string>;
|
|
865
|
-
customStyle: import("prop-types").Requireable<{
|
|
866
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
867
|
-
}>;
|
|
868
|
-
}>>;
|
|
869
|
-
required: import("prop-types").Requireable<boolean>;
|
|
870
|
-
}> | null | undefined>>;
|
|
871
|
-
isFetching: import("prop-types").Requireable<boolean>;
|
|
872
|
-
search: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
873
|
-
value: import("prop-types").Requireable<string>;
|
|
874
|
-
placeholder: import("prop-types").Validator<string>;
|
|
875
|
-
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
876
|
-
onClear: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
877
|
-
onFocus: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
878
|
-
onBlur: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
879
|
-
theme: import("prop-types").Requireable<string>;
|
|
880
|
-
dataTestId: import("prop-types").Requireable<string>;
|
|
881
|
-
}>>;
|
|
882
|
-
checkboxWithTitle: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
883
|
-
title: import("prop-types").Requireable<string>;
|
|
884
|
-
name: import("prop-types").Requireable<string>;
|
|
885
|
-
checked: import("prop-types").Requireable<boolean>;
|
|
886
|
-
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
887
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
888
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
889
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
890
|
-
iconName: import("prop-types").Requireable<string>;
|
|
891
|
-
iconColor: import("prop-types").Requireable<string>;
|
|
892
|
-
preset: import("prop-types").Requireable<string>;
|
|
893
|
-
}>>;
|
|
894
|
-
customStyle: import("prop-types").Requireable<{
|
|
895
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
896
|
-
}>;
|
|
897
|
-
}>>;
|
|
898
|
-
actionButtons: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
899
|
-
type: import("prop-types").Requireable<string>;
|
|
900
|
-
usage: import("prop-types").Requireable<string>;
|
|
901
|
-
label: import("prop-types").Requireable<string>;
|
|
902
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
903
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
904
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
905
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
906
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
907
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
908
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
909
|
-
position: import("prop-types").Requireable<string>;
|
|
910
|
-
type: import("prop-types").Requireable<string>;
|
|
911
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
912
|
-
name: import("prop-types").Validator<string>;
|
|
913
|
-
color: import("prop-types").Requireable<string>;
|
|
914
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
915
|
-
size: import("prop-types").Requireable<number>;
|
|
916
|
-
customStyle: import("prop-types").Requireable<{
|
|
917
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
918
|
-
}>;
|
|
919
|
-
}>>;
|
|
455
|
+
iconName: import("prop-types").Validator<string>;
|
|
456
|
+
}>>>;
|
|
457
|
+
checkbox: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
458
|
+
checked: import("prop-types").Validator<boolean>;
|
|
459
|
+
onChange: import("prop-types").Validator<(...args: any[]) => any>;
|
|
460
|
+
}>>>;
|
|
461
|
+
}>>[]>;
|
|
462
|
+
search: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
463
|
+
value: import("prop-types").Validator<string>;
|
|
464
|
+
placeholder: import("prop-types").Validator<string>;
|
|
465
|
+
onChange: import("prop-types").Validator<(...args: any[]) => any>;
|
|
466
|
+
}>>>;
|
|
467
|
+
emptyResult: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
468
|
+
title: import("prop-types").Validator<string>;
|
|
469
|
+
description: import("prop-types").Validator<string>;
|
|
920
470
|
}>>;
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
target: import("prop-types").Requireable<string>;
|
|
926
|
-
}>>;
|
|
927
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
928
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
929
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
930
|
-
className: import("prop-types").Requireable<string>;
|
|
931
|
-
customStyle: import("prop-types").Requireable<{
|
|
932
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
933
|
-
}>;
|
|
934
|
-
}> | null | undefined)[]>;
|
|
935
|
-
buttonMenuAction: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
936
|
-
button: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
937
|
-
type: import("prop-types").Requireable<string>;
|
|
938
|
-
usage: import("prop-types").Requireable<string>;
|
|
939
|
-
label: import("prop-types").Requireable<string>;
|
|
940
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
941
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
942
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
943
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
944
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
945
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
946
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
947
|
-
position: import("prop-types").Requireable<string>;
|
|
948
|
-
type: import("prop-types").Requireable<string>;
|
|
949
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
950
|
-
name: import("prop-types").Validator<string>;
|
|
951
|
-
color: import("prop-types").Requireable<string>;
|
|
952
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
953
|
-
size: import("prop-types").Requireable<number>;
|
|
954
|
-
customStyle: import("prop-types").Requireable<{
|
|
955
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
956
|
-
}>;
|
|
957
|
-
}>>;
|
|
958
|
-
}>>;
|
|
959
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
960
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
961
|
-
href: import("prop-types").Requireable<string>;
|
|
962
|
-
download: import("prop-types").Requireable<boolean>;
|
|
963
|
-
target: import("prop-types").Requireable<string>;
|
|
964
|
-
}>>;
|
|
965
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
966
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
967
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
968
|
-
className: import("prop-types").Requireable<string>;
|
|
969
|
-
customStyle: import("prop-types").Requireable<{
|
|
970
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
971
|
-
}>;
|
|
972
|
-
}>>>;
|
|
973
|
-
menu: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
974
|
-
buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
|
|
975
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
976
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
977
|
-
label: import("prop-types").Validator<string>;
|
|
978
|
-
onClick: import("prop-types").Validator<(...args: any[]) => any>;
|
|
979
|
-
type: import("prop-types").Requireable<string>;
|
|
980
|
-
buttonLinkType: import("prop-types").Requireable<string>;
|
|
981
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
982
|
-
theme: import("prop-types").Requireable<string>;
|
|
983
|
-
position: import("prop-types").Requireable<string>;
|
|
984
|
-
type: import("prop-types").Requireable<string>;
|
|
985
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
986
|
-
name: import("prop-types").Validator<string>;
|
|
987
|
-
color: import("prop-types").Requireable<string>;
|
|
988
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
989
|
-
size: import("prop-types").Requireable<number>;
|
|
990
|
-
customStyle: import("prop-types").Requireable<{
|
|
991
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
992
|
-
}>;
|
|
993
|
-
}>>;
|
|
994
|
-
}>>;
|
|
995
|
-
customStyle: import("prop-types").Requireable<{
|
|
996
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
997
|
-
}>;
|
|
998
|
-
}> | null | undefined)[]>;
|
|
999
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1000
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1001
|
-
}>>>;
|
|
1002
|
-
menuWrapper: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1003
|
-
ariaLabel: import("prop-types").Requireable<string>;
|
|
1004
|
-
customStyle: import("prop-types").Requireable<{
|
|
1005
|
-
[x: string]: NonNullable<string | number | object | null | undefined> | null | undefined;
|
|
1006
|
-
}>;
|
|
1007
|
-
}>>;
|
|
1008
|
-
}>>;
|
|
1009
|
-
}>>>;
|
|
1010
|
-
content: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1011
|
-
title: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
1012
|
-
title: import("prop-types").Requireable<string>;
|
|
1013
|
-
subtitle: import("prop-types").Requireable<string>;
|
|
1014
|
-
type: import("prop-types").Requireable<string>;
|
|
1015
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1016
|
-
titleSize: import("prop-types").Requireable<string>;
|
|
1017
|
-
subtitleSize: import("prop-types").Requireable<string>;
|
|
1018
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
|
|
1019
|
-
tag: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1020
|
-
label: import("prop-types").Requireable<string>;
|
|
1021
|
-
type: import("prop-types").Requireable<string>;
|
|
1022
|
-
size: import("prop-types").Requireable<string>;
|
|
1023
|
-
customStyle: import("prop-types").Requireable<{
|
|
1024
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1025
|
-
}>;
|
|
1026
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
|
|
1027
|
-
}>>;
|
|
1028
|
-
button: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1029
|
-
type: import("prop-types").Requireable<string>;
|
|
1030
|
-
usage: import("prop-types").Requireable<string>;
|
|
1031
|
-
label: import("prop-types").Requireable<string>;
|
|
1032
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
1033
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1034
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
1035
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
1036
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1037
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
1038
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1039
|
-
position: import("prop-types").Requireable<string>;
|
|
1040
|
-
type: import("prop-types").Requireable<string>;
|
|
1041
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1042
|
-
name: import("prop-types").Validator<string>;
|
|
1043
|
-
color: import("prop-types").Requireable<string>;
|
|
1044
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1045
|
-
size: import("prop-types").Requireable<number>;
|
|
1046
|
-
customStyle: import("prop-types").Requireable<{
|
|
1047
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1048
|
-
}>;
|
|
1049
|
-
}>>;
|
|
1050
|
-
}>>;
|
|
1051
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1052
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1053
|
-
href: import("prop-types").Requireable<string>;
|
|
1054
|
-
download: import("prop-types").Requireable<boolean>;
|
|
1055
|
-
target: import("prop-types").Requireable<string>;
|
|
1056
|
-
}>>;
|
|
1057
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
1058
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
1059
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1060
|
-
className: import("prop-types").Requireable<string>;
|
|
1061
|
-
customStyle: import("prop-types").Requireable<{
|
|
1062
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1063
|
-
}>;
|
|
1064
|
-
}>>;
|
|
1065
|
-
required: import("prop-types").Requireable<boolean>;
|
|
1066
|
-
}>>>;
|
|
1067
|
-
listContent: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
1068
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1069
|
-
buttonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1070
|
-
type: import("prop-types").Requireable<string>;
|
|
1071
|
-
usage: import("prop-types").Requireable<string>;
|
|
1072
|
-
label: import("prop-types").Requireable<string>;
|
|
1073
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
1074
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1075
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
1076
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
1077
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1078
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
1079
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1080
|
-
position: import("prop-types").Requireable<string>;
|
|
1081
|
-
type: import("prop-types").Requireable<string>;
|
|
1082
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1083
|
-
name: import("prop-types").Validator<string>;
|
|
1084
|
-
color: import("prop-types").Requireable<string>;
|
|
1085
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1086
|
-
size: import("prop-types").Requireable<number>;
|
|
1087
|
-
customStyle: import("prop-types").Requireable<{
|
|
1088
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1089
|
-
}>;
|
|
1090
|
-
}>>;
|
|
1091
|
-
}>>;
|
|
1092
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1093
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1094
|
-
href: import("prop-types").Requireable<string>;
|
|
1095
|
-
download: import("prop-types").Requireable<boolean>;
|
|
1096
|
-
target: import("prop-types").Requireable<string>;
|
|
1097
|
-
}>>;
|
|
1098
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
1099
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
1100
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1101
|
-
className: import("prop-types").Requireable<string>;
|
|
1102
|
-
customStyle: import("prop-types").Requireable<{
|
|
1103
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1104
|
-
}>;
|
|
1105
|
-
}>>;
|
|
1106
|
-
selectMultiple: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1107
|
-
title: import("prop-types").Requireable<string>;
|
|
1108
|
-
placeholder: import("prop-types").Requireable<string>;
|
|
1109
|
-
description: import("prop-types").Requireable<string>;
|
|
1110
|
-
hint: import("prop-types").Requireable<string>;
|
|
1111
|
-
options: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
|
|
1112
|
-
selected: import("prop-types").Validator<boolean>;
|
|
1113
|
-
name: import("prop-types").Validator<string>;
|
|
1114
|
-
value: import("prop-types").Requireable<string>;
|
|
1115
|
-
}>>[]>;
|
|
1116
|
-
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1117
|
-
onError: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1118
|
-
multiple: import("prop-types").Requireable<boolean>;
|
|
1119
|
-
modified: import("prop-types").Requireable<boolean>;
|
|
1120
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1121
|
-
error: import("prop-types").Requireable<string>;
|
|
1122
|
-
theme: import("prop-types").Requireable<string>;
|
|
1123
|
-
}>>;
|
|
1124
|
-
content: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
|
|
1125
|
-
items: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
1126
|
-
title: import("prop-types").Validator<string>;
|
|
1127
|
-
subtitle: import("prop-types").Requireable<string>;
|
|
1128
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1129
|
-
provider: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1130
|
-
label: import("prop-types").Requireable<string>;
|
|
1131
|
-
type: import("prop-types").Requireable<string>;
|
|
1132
|
-
}>>;
|
|
1133
|
-
selected: import("prop-types").Requireable<boolean>;
|
|
1134
|
-
selectedColor: import("prop-types").Requireable<string>;
|
|
1135
|
-
dataColumns: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
1136
|
-
label: import("prop-types").Requireable<string>;
|
|
1137
|
-
type: import("prop-types").Requireable<string>;
|
|
1138
|
-
className: import("prop-types").Requireable<string>;
|
|
1139
|
-
}> | null | undefined)[]>;
|
|
1140
|
-
buttonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1141
|
-
type: import("prop-types").Requireable<string>;
|
|
1142
|
-
label: import("prop-types").Requireable<string>;
|
|
1143
|
-
ariaLabel: import("prop-types").Requireable<string>;
|
|
1144
|
-
dataName: import("prop-types").Requireable<string>;
|
|
1145
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1146
|
-
position: import("prop-types").Requireable<string>;
|
|
1147
|
-
type: import("prop-types").Requireable<string>;
|
|
1148
|
-
}>>;
|
|
1149
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1150
|
-
}>>;
|
|
1151
|
-
secondButtonLink: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1152
|
-
type: import("prop-types").Requireable<string>;
|
|
1153
|
-
label: import("prop-types").Requireable<string>;
|
|
1154
|
-
ariaLabel: import("prop-types").Requireable<string>;
|
|
1155
|
-
dataName: import("prop-types").Requireable<string>;
|
|
1156
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1157
|
-
position: import("prop-types").Requireable<string>;
|
|
1158
|
-
type: import("prop-types").Requireable<string>;
|
|
1159
|
-
}>>;
|
|
1160
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1161
|
-
}>>;
|
|
1162
|
-
bulletPointMenuButton: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1163
|
-
buttonAriaLabel: import("prop-types").Requireable<string>;
|
|
1164
|
-
menuAriaLabel: import("prop-types").Requireable<string>;
|
|
1165
|
-
buttons: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
1166
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1167
|
-
label: import("prop-types").Requireable<string>;
|
|
1168
|
-
type: import("prop-types").Requireable<string>;
|
|
1169
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1170
|
-
}> | null | undefined)[]>;
|
|
1171
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1172
|
-
}>>;
|
|
1173
|
-
tags: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
1174
|
-
label: import("prop-types").Requireable<string>;
|
|
1175
|
-
type: import("prop-types").Requireable<string>;
|
|
1176
|
-
}> | null | undefined)[]>;
|
|
1177
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1178
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1179
|
-
isBulkStyle: import("prop-types").Requireable<boolean>;
|
|
1180
|
-
isOverflowHidden: import("prop-types").Requireable<boolean>;
|
|
1181
|
-
order: import("prop-types").Requireable<number>;
|
|
1182
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1183
|
-
contentType: import("prop-types").Requireable<string>;
|
|
1184
|
-
id: import("prop-types").Requireable<string>;
|
|
1185
|
-
leftIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1186
|
-
iconName: import("prop-types").Requireable<string>;
|
|
1187
|
-
iconColor: import("prop-types").Requireable<string>;
|
|
1188
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1189
|
-
borderRadius: import("prop-types").Requireable<string>;
|
|
1190
|
-
preset: import("prop-types").Requireable<string>;
|
|
1191
|
-
gradientBackground: import("prop-types").Requireable<boolean>;
|
|
1192
|
-
size: import("prop-types").Requireable<number>;
|
|
1193
|
-
wrapperSize: import("prop-types").Requireable<number>;
|
|
1194
|
-
}>>;
|
|
1195
|
-
image: import("prop-types").Requireable<string>;
|
|
1196
|
-
checkbox: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1197
|
-
title: import("prop-types").Requireable<string>;
|
|
1198
|
-
name: import("prop-types").Requireable<string>;
|
|
1199
|
-
checked: import("prop-types").Requireable<boolean>;
|
|
1200
|
-
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1201
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1202
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1203
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1204
|
-
iconName: import("prop-types").Requireable<string>;
|
|
1205
|
-
iconColor: import("prop-types").Requireable<string>;
|
|
1206
|
-
preset: import("prop-types").Requireable<string>;
|
|
1207
|
-
}>>;
|
|
1208
|
-
customStyle: import("prop-types").Requireable<{
|
|
1209
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1210
|
-
}>;
|
|
1211
|
-
}>>;
|
|
1212
|
-
}> | null | undefined)[]>;
|
|
1213
|
-
type: import("prop-types").Requireable<string>;
|
|
1214
|
-
itemType: import("prop-types").Requireable<string>;
|
|
1215
|
-
onDrop: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1216
|
-
isDraggable: import("prop-types").Requireable<boolean>;
|
|
1217
|
-
tableHeader: import("prop-types").Requireable<(string | null | undefined)[]>;
|
|
1218
|
-
emptyResult: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1219
|
-
title: import("prop-types").Requireable<string>;
|
|
1220
|
-
description: import("prop-types").Requireable<string>;
|
|
1221
|
-
button: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
|
|
1222
|
-
type: import("prop-types").Requireable<string>;
|
|
1223
|
-
usage: import("prop-types").Requireable<string>;
|
|
1224
|
-
label: import("prop-types").Requireable<string>;
|
|
1225
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
1226
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1227
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
1228
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
1229
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1230
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
1231
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1232
|
-
position: import("prop-types").Requireable<string>;
|
|
1233
|
-
type: import("prop-types").Requireable<string>;
|
|
1234
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1235
|
-
name: import("prop-types").Validator<string>;
|
|
1236
|
-
color: import("prop-types").Requireable<string>;
|
|
1237
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1238
|
-
size: import("prop-types").Requireable<number>;
|
|
1239
|
-
customStyle: import("prop-types").Requireable<{
|
|
1240
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1241
|
-
}>;
|
|
1242
|
-
}>>;
|
|
1243
|
-
}>>;
|
|
1244
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1245
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1246
|
-
href: import("prop-types").Requireable<string>;
|
|
1247
|
-
download: import("prop-types").Requireable<boolean>;
|
|
1248
|
-
target: import("prop-types").Requireable<string>;
|
|
1249
|
-
}>>;
|
|
1250
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
1251
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
1252
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1253
|
-
className: import("prop-types").Requireable<string>;
|
|
1254
|
-
customStyle: import("prop-types").Requireable<{
|
|
1255
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1256
|
-
}>;
|
|
1257
|
-
}> | import("prop-types").InferProps<{
|
|
1258
|
-
button: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
1259
|
-
type: import("prop-types").Requireable<string>;
|
|
1260
|
-
usage: import("prop-types").Requireable<string>;
|
|
1261
|
-
label: import("prop-types").Requireable<string>;
|
|
1262
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
1263
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1264
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
1265
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
1266
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1267
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
1268
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1269
|
-
position: import("prop-types").Requireable<string>;
|
|
1270
|
-
type: import("prop-types").Requireable<string>;
|
|
1271
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1272
|
-
name: import("prop-types").Validator<string>;
|
|
1273
|
-
color: import("prop-types").Requireable<string>;
|
|
1274
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1275
|
-
size: import("prop-types").Requireable<number>;
|
|
1276
|
-
customStyle: import("prop-types").Requireable<{
|
|
1277
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1278
|
-
}>;
|
|
1279
|
-
}>>;
|
|
1280
|
-
}>>;
|
|
1281
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1282
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1283
|
-
href: import("prop-types").Requireable<string>;
|
|
1284
|
-
download: import("prop-types").Requireable<boolean>;
|
|
1285
|
-
target: import("prop-types").Requireable<string>;
|
|
1286
|
-
}>>;
|
|
1287
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
1288
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
1289
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1290
|
-
className: import("prop-types").Requireable<string>;
|
|
1291
|
-
customStyle: import("prop-types").Requireable<{
|
|
1292
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1293
|
-
}>;
|
|
1294
|
-
}>>>;
|
|
1295
|
-
menu: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
1296
|
-
buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
|
|
1297
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1298
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1299
|
-
label: import("prop-types").Validator<string>;
|
|
1300
|
-
onClick: import("prop-types").Validator<(...args: any[]) => any>;
|
|
1301
|
-
type: import("prop-types").Requireable<string>;
|
|
1302
|
-
buttonLinkType: import("prop-types").Requireable<string>;
|
|
1303
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1304
|
-
theme: import("prop-types").Requireable<string>;
|
|
1305
|
-
position: import("prop-types").Requireable<string>;
|
|
1306
|
-
type: import("prop-types").Requireable<string>;
|
|
1307
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1308
|
-
name: import("prop-types").Validator<string>;
|
|
1309
|
-
color: import("prop-types").Requireable<string>;
|
|
1310
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1311
|
-
size: import("prop-types").Requireable<number>;
|
|
1312
|
-
customStyle: import("prop-types").Requireable<{
|
|
1313
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1314
|
-
}>;
|
|
1315
|
-
}>>;
|
|
1316
|
-
}>>;
|
|
1317
|
-
customStyle: import("prop-types").Requireable<{
|
|
1318
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1319
|
-
}>;
|
|
1320
|
-
}> | null | undefined)[]>;
|
|
1321
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1322
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1323
|
-
}>>>;
|
|
1324
|
-
menuWrapper: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1325
|
-
ariaLabel: import("prop-types").Requireable<string>;
|
|
1326
|
-
customStyle: import("prop-types").Requireable<{
|
|
1327
|
-
[x: string]: NonNullable<string | number | object | null | undefined> | null | undefined;
|
|
1328
|
-
}>;
|
|
1329
|
-
}>>;
|
|
1330
|
-
}> | null | undefined>>;
|
|
1331
|
-
}>>;
|
|
1332
|
-
}> | import("prop-types").InferProps<{
|
|
1333
|
-
type: import("prop-types").Requireable<string>;
|
|
1334
|
-
columns: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
1335
|
-
title: import("prop-types").Validator<string>;
|
|
1336
|
-
}> | null | undefined)[]>;
|
|
1337
|
-
rows: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
1338
|
-
fields: import("prop-types").Requireable<(NonNullable<string | import("prop-types").InferProps<{
|
|
1339
|
-
type: import("prop-types").Requireable<string>;
|
|
1340
|
-
current: import("prop-types").Requireable<boolean>;
|
|
1341
|
-
selected: import("prop-types").Requireable<boolean>;
|
|
1342
|
-
icon: import("prop-types").Requireable<string>;
|
|
1343
|
-
value: import("prop-types").Requireable<string>;
|
|
1344
|
-
}> | null | undefined> | null | undefined)[]>;
|
|
1345
|
-
isRowExpandible: import("prop-types").Requireable<boolean>;
|
|
1346
|
-
lastField: import("prop-types").Requireable<NonNullable<string | import("prop-types").InferProps<{
|
|
1347
|
-
type: import("prop-types").Requireable<string>;
|
|
1348
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1349
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1350
|
-
buttonAriaLabel: import("prop-types").Requireable<string>;
|
|
1351
|
-
menuAriaLabel: import("prop-types").Requireable<string>;
|
|
1352
|
-
buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
|
|
1353
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1354
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1355
|
-
label: import("prop-types").Validator<string>;
|
|
1356
|
-
onClick: import("prop-types").Validator<(...args: any[]) => any>;
|
|
1357
|
-
type: import("prop-types").Requireable<string>;
|
|
1358
|
-
buttonLinkType: import("prop-types").Requireable<string>;
|
|
1359
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1360
|
-
theme: import("prop-types").Requireable<string>;
|
|
1361
|
-
position: import("prop-types").Requireable<string>;
|
|
1362
|
-
type: import("prop-types").Requireable<string>;
|
|
1363
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1364
|
-
name: import("prop-types").Validator<string>;
|
|
1365
|
-
color: import("prop-types").Requireable<string>;
|
|
1366
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1367
|
-
size: import("prop-types").Requireable<number>;
|
|
1368
|
-
customStyle: import("prop-types").Requireable<{
|
|
1369
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1370
|
-
}>;
|
|
1371
|
-
}>>;
|
|
1372
|
-
}>>;
|
|
1373
|
-
customStyle: import("prop-types").Requireable<{
|
|
1374
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1375
|
-
}>;
|
|
1376
|
-
}> | null | undefined)[]>;
|
|
1377
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1378
|
-
menuButtonClassName: import("prop-types").Requireable<string>;
|
|
1379
|
-
isBulkMenu: import("prop-types").Requireable<boolean>;
|
|
1380
|
-
}> | null | undefined>>;
|
|
1381
|
-
}> | null | undefined)[]>;
|
|
1382
|
-
stickyFirstColumn: import("prop-types").Requireable<boolean>;
|
|
1383
|
-
stickyLastColumn: import("prop-types").Requireable<boolean>;
|
|
1384
|
-
columnWidth: import("prop-types").Requireable<string>;
|
|
1385
|
-
ariaDescribedby: import("prop-types").Requireable<string>;
|
|
1386
|
-
lastField: import("prop-types").Requireable<NonNullable<import("prop-types").InferProps<{
|
|
1387
|
-
componentType: import("prop-types").Requireable<string>;
|
|
1388
|
-
type: import("prop-types").Requireable<string>;
|
|
1389
|
-
usage: import("prop-types").Requireable<string>;
|
|
1390
|
-
label: import("prop-types").Requireable<string>;
|
|
1391
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
1392
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1393
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
1394
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
1395
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1396
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
1397
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1398
|
-
position: import("prop-types").Requireable<string>;
|
|
1399
|
-
type: import("prop-types").Requireable<string>;
|
|
1400
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1401
|
-
name: import("prop-types").Validator<string>;
|
|
1402
|
-
color: import("prop-types").Requireable<string>;
|
|
1403
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1404
|
-
size: import("prop-types").Requireable<number>;
|
|
1405
|
-
customStyle: import("prop-types").Requireable<{
|
|
1406
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1407
|
-
}>;
|
|
1408
|
-
}>>;
|
|
1409
|
-
}>>;
|
|
1410
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1411
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1412
|
-
href: import("prop-types").Requireable<string>;
|
|
1413
|
-
download: import("prop-types").Requireable<boolean>;
|
|
1414
|
-
target: import("prop-types").Requireable<string>;
|
|
1415
|
-
}>>;
|
|
1416
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
1417
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
1418
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1419
|
-
className: import("prop-types").Requireable<string>;
|
|
1420
|
-
customStyle: import("prop-types").Requireable<{
|
|
1421
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1422
|
-
}>;
|
|
1423
|
-
}> | import("prop-types").InferProps<{
|
|
1424
|
-
componentType: import("prop-types").Requireable<string>;
|
|
1425
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1426
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1427
|
-
buttonAriaLabel: import("prop-types").Requireable<string>;
|
|
1428
|
-
menuAriaLabel: import("prop-types").Requireable<string>;
|
|
1429
|
-
buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
|
|
1430
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1431
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1432
|
-
label: import("prop-types").Validator<string>;
|
|
1433
|
-
onClick: import("prop-types").Validator<(...args: any[]) => any>;
|
|
1434
|
-
type: import("prop-types").Requireable<string>;
|
|
1435
|
-
buttonLinkType: import("prop-types").Requireable<string>;
|
|
1436
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1437
|
-
theme: import("prop-types").Requireable<string>;
|
|
1438
|
-
position: import("prop-types").Requireable<string>;
|
|
1439
|
-
type: import("prop-types").Requireable<string>;
|
|
1440
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1441
|
-
name: import("prop-types").Validator<string>;
|
|
1442
|
-
color: import("prop-types").Requireable<string>;
|
|
1443
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1444
|
-
size: import("prop-types").Requireable<number>;
|
|
1445
|
-
customStyle: import("prop-types").Requireable<{
|
|
1446
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1447
|
-
}>;
|
|
1448
|
-
}>>;
|
|
1449
|
-
}>>;
|
|
1450
|
-
customStyle: import("prop-types").Requireable<{
|
|
1451
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1452
|
-
}>;
|
|
1453
|
-
}> | null | undefined)[]>;
|
|
1454
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1455
|
-
menuButtonClassName: import("prop-types").Requireable<string>;
|
|
1456
|
-
isBulkMenu: import("prop-types").Requireable<boolean>;
|
|
1457
|
-
}> | null | undefined>>;
|
|
1458
|
-
isNestedTable: import("prop-types").Requireable<boolean>;
|
|
1459
|
-
emptyStateFirstMessage: import("prop-types").Requireable<string>;
|
|
1460
|
-
emptyStateSecondMessage: import("prop-types").Requireable<string>;
|
|
1461
|
-
}> | null | undefined>>;
|
|
1462
|
-
title: import("prop-types").Requireable<NonNullable<string | import("prop-types").InferProps<{
|
|
1463
|
-
title: import("prop-types").Requireable<string>;
|
|
1464
|
-
subtitle: import("prop-types").Requireable<string>;
|
|
1465
|
-
type: import("prop-types").Requireable<string>;
|
|
1466
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1467
|
-
titleSize: import("prop-types").Requireable<string>;
|
|
1468
|
-
subtitleSize: import("prop-types").Requireable<string>;
|
|
1469
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
|
|
1470
|
-
tag: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1471
|
-
label: import("prop-types").Requireable<string>;
|
|
1472
|
-
type: import("prop-types").Requireable<string>;
|
|
1473
|
-
size: import("prop-types").Requireable<string>;
|
|
1474
|
-
customStyle: import("prop-types").Requireable<{
|
|
1475
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1476
|
-
}>;
|
|
1477
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<any>>;
|
|
1478
|
-
}>>;
|
|
1479
|
-
button: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1480
|
-
type: import("prop-types").Requireable<string>;
|
|
1481
|
-
usage: import("prop-types").Requireable<string>;
|
|
1482
|
-
label: import("prop-types").Requireable<string>;
|
|
1483
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
1484
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1485
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
1486
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
1487
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1488
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
1489
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1490
|
-
position: import("prop-types").Requireable<string>;
|
|
1491
|
-
type: import("prop-types").Requireable<string>;
|
|
1492
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1493
|
-
name: import("prop-types").Validator<string>;
|
|
1494
|
-
color: import("prop-types").Requireable<string>;
|
|
1495
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1496
|
-
size: import("prop-types").Requireable<number>;
|
|
1497
|
-
customStyle: import("prop-types").Requireable<{
|
|
1498
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1499
|
-
}>;
|
|
1500
|
-
}>>;
|
|
1501
|
-
}>>;
|
|
1502
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1503
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1504
|
-
href: import("prop-types").Requireable<string>;
|
|
1505
|
-
download: import("prop-types").Requireable<boolean>;
|
|
1506
|
-
target: import("prop-types").Requireable<string>;
|
|
1507
|
-
}>>;
|
|
1508
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
1509
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
1510
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1511
|
-
className: import("prop-types").Requireable<string>;
|
|
1512
|
-
customStyle: import("prop-types").Requireable<{
|
|
1513
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1514
|
-
}>;
|
|
1515
|
-
}>>;
|
|
1516
|
-
required: import("prop-types").Requireable<boolean>;
|
|
1517
|
-
}> | null | undefined>>;
|
|
1518
|
-
isFetching: import("prop-types").Requireable<boolean>;
|
|
1519
|
-
search: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1520
|
-
value: import("prop-types").Requireable<string>;
|
|
1521
|
-
placeholder: import("prop-types").Validator<string>;
|
|
1522
|
-
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1523
|
-
onClear: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1524
|
-
onFocus: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1525
|
-
onBlur: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1526
|
-
theme: import("prop-types").Requireable<string>;
|
|
1527
|
-
dataTestId: import("prop-types").Requireable<string>;
|
|
1528
|
-
}>>;
|
|
1529
|
-
checkboxWithTitle: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1530
|
-
title: import("prop-types").Requireable<string>;
|
|
1531
|
-
name: import("prop-types").Requireable<string>;
|
|
1532
|
-
checked: import("prop-types").Requireable<boolean>;
|
|
1533
|
-
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1534
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1535
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1536
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1537
|
-
iconName: import("prop-types").Requireable<string>;
|
|
1538
|
-
iconColor: import("prop-types").Requireable<string>;
|
|
1539
|
-
preset: import("prop-types").Requireable<string>;
|
|
1540
|
-
}>>;
|
|
1541
|
-
customStyle: import("prop-types").Requireable<{
|
|
1542
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1543
|
-
}>;
|
|
1544
|
-
}>>;
|
|
1545
|
-
actionButtons: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
1546
|
-
type: import("prop-types").Requireable<string>;
|
|
1547
|
-
usage: import("prop-types").Requireable<string>;
|
|
1548
|
-
label: import("prop-types").Requireable<string>;
|
|
1549
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
1550
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1551
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
1552
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
1553
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1554
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
1555
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1556
|
-
position: import("prop-types").Requireable<string>;
|
|
1557
|
-
type: import("prop-types").Requireable<string>;
|
|
1558
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1559
|
-
name: import("prop-types").Validator<string>;
|
|
1560
|
-
color: import("prop-types").Requireable<string>;
|
|
1561
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1562
|
-
size: import("prop-types").Requireable<number>;
|
|
1563
|
-
customStyle: import("prop-types").Requireable<{
|
|
1564
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1565
|
-
}>;
|
|
1566
|
-
}>>;
|
|
1567
|
-
}>>;
|
|
1568
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1569
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1570
|
-
href: import("prop-types").Requireable<string>;
|
|
1571
|
-
download: import("prop-types").Requireable<boolean>;
|
|
1572
|
-
target: import("prop-types").Requireable<string>;
|
|
1573
|
-
}>>;
|
|
1574
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
1575
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
1576
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1577
|
-
className: import("prop-types").Requireable<string>;
|
|
1578
|
-
customStyle: import("prop-types").Requireable<{
|
|
1579
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1580
|
-
}>;
|
|
1581
|
-
}> | null | undefined)[]>;
|
|
1582
|
-
buttonMenuAction: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1583
|
-
button: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
1584
|
-
type: import("prop-types").Requireable<string>;
|
|
1585
|
-
usage: import("prop-types").Requireable<string>;
|
|
1586
|
-
label: import("prop-types").Requireable<string>;
|
|
1587
|
-
content: import("prop-types").Requireable<import("prop-types").ReactNodeLike>;
|
|
1588
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1589
|
-
tooltipText: import("prop-types").Requireable<string>;
|
|
1590
|
-
tooltipPlacement: import("prop-types").Requireable<string>;
|
|
1591
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1592
|
-
'data-testid': import("prop-types").Requireable<string>;
|
|
1593
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1594
|
-
position: import("prop-types").Requireable<string>;
|
|
1595
|
-
type: import("prop-types").Requireable<string>;
|
|
1596
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1597
|
-
name: import("prop-types").Validator<string>;
|
|
1598
|
-
color: import("prop-types").Requireable<string>;
|
|
1599
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1600
|
-
size: import("prop-types").Requireable<number>;
|
|
1601
|
-
customStyle: import("prop-types").Requireable<{
|
|
1602
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1603
|
-
}>;
|
|
1604
|
-
}>>;
|
|
1605
|
-
}>>;
|
|
1606
|
-
onClick: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
1607
|
-
link: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1608
|
-
href: import("prop-types").Requireable<string>;
|
|
1609
|
-
download: import("prop-types").Requireable<boolean>;
|
|
1610
|
-
target: import("prop-types").Requireable<string>;
|
|
1611
|
-
}>>;
|
|
1612
|
-
hoverBackgroundColor: import("prop-types").Requireable<string>;
|
|
1613
|
-
hoverColor: import("prop-types").Requireable<string>;
|
|
1614
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1615
|
-
className: import("prop-types").Requireable<string>;
|
|
1616
|
-
customStyle: import("prop-types").Requireable<{
|
|
1617
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1618
|
-
}>;
|
|
1619
|
-
}>>>;
|
|
1620
|
-
menu: import("prop-types").Validator<NonNullable<import("prop-types").InferProps<{
|
|
1621
|
-
buttons: import("prop-types").Validator<(import("prop-types").InferProps<{
|
|
1622
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1623
|
-
disabled: import("prop-types").Requireable<boolean>;
|
|
1624
|
-
label: import("prop-types").Validator<string>;
|
|
1625
|
-
onClick: import("prop-types").Validator<(...args: any[]) => any>;
|
|
1626
|
-
type: import("prop-types").Requireable<string>;
|
|
1627
|
-
buttonLinkType: import("prop-types").Requireable<string>;
|
|
1628
|
-
icon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1629
|
-
theme: import("prop-types").Requireable<string>;
|
|
1630
|
-
position: import("prop-types").Requireable<string>;
|
|
1631
|
-
type: import("prop-types").Requireable<string>;
|
|
1632
|
-
faIcon: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1633
|
-
name: import("prop-types").Validator<string>;
|
|
1634
|
-
color: import("prop-types").Requireable<string>;
|
|
1635
|
-
backgroundColor: import("prop-types").Requireable<string>;
|
|
1636
|
-
size: import("prop-types").Requireable<number>;
|
|
1637
|
-
customStyle: import("prop-types").Requireable<{
|
|
1638
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1639
|
-
}>;
|
|
1640
|
-
}>>;
|
|
1641
|
-
}>>;
|
|
1642
|
-
customStyle: import("prop-types").Requireable<{
|
|
1643
|
-
[x: string]: NonNullable<string | number | null | undefined> | null | undefined;
|
|
1644
|
-
}>;
|
|
1645
|
-
}> | null | undefined)[]>;
|
|
1646
|
-
'data-name': import("prop-types").Requireable<string>;
|
|
1647
|
-
'aria-label': import("prop-types").Requireable<string>;
|
|
1648
|
-
}>>>;
|
|
1649
|
-
menuWrapper: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
1650
|
-
ariaLabel: import("prop-types").Requireable<string>;
|
|
1651
|
-
customStyle: import("prop-types").Requireable<{
|
|
1652
|
-
[x: string]: NonNullable<string | number | object | null | undefined> | null | undefined;
|
|
1653
|
-
}>;
|
|
1654
|
-
}>>;
|
|
471
|
+
checkbox: import("prop-types").Requireable<import("prop-types").InferProps<{
|
|
472
|
+
title: import("prop-types").Validator<string>;
|
|
473
|
+
checked: import("prop-types").Validator<boolean>;
|
|
474
|
+
onChange: import("prop-types").Validator<(...args: any[]) => any>;
|
|
1655
475
|
}>>;
|
|
1656
476
|
}>>>;
|
|
1657
|
-
}
|
|
477
|
+
}>>>;
|
|
1658
478
|
};
|
|
1659
479
|
};
|
|
1660
480
|
export default SkillEdition;
|