@gouvfr-lasuite/ui-kit 0.19.9 → 0.20.0
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/assets/fonts/Marianne/Marianne-Bold.woff +0 -0
- package/dist/assets/fonts/Marianne/Marianne-Bold_Italic.woff +0 -0
- package/dist/assets/fonts/Marianne/Marianne-ExtraBold.woff +0 -0
- package/dist/assets/fonts/Marianne/Marianne-ExtraBold_Italic.woff +0 -0
- package/dist/assets/fonts/Marianne/Marianne-Light.woff +0 -0
- package/dist/assets/fonts/Marianne/Marianne-Light_Italic.woff +0 -0
- package/dist/assets/fonts/Marianne/Marianne-Medium.woff +0 -0
- package/dist/assets/fonts/Marianne/Marianne-Medium_Italic.woff +0 -0
- package/dist/assets/fonts/Marianne/Marianne-Regular.woff +0 -0
- package/dist/assets/fonts/Marianne/Marianne-Regular_Italic.woff +0 -0
- package/dist/assets/fonts/Marianne/Marianne-Thin.woff +0 -0
- package/dist/assets/fonts/Marianne/Marianne-Thin_Italic.woff +0 -0
- package/dist/assets/fonts/Marianne/Marianne-font.css +6 -0
- package/dist/cunningham.ts +20 -1
- package/dist/index.cjs +46 -41
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +688 -13
- package/dist/index.js +18400 -14017
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +10 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ButtonHTMLAttributes } from 'react';
|
|
1
2
|
import { ButtonProps } from '@gouvfr-lasuite/cunningham-react';
|
|
2
3
|
import { Context } from 'react';
|
|
3
4
|
import { CunninghamProvider as CunninghamProvider_2 } from '@gouvfr-lasuite/cunningham-react';
|
|
@@ -7,7 +8,7 @@ import { Dispatch } from 'react';
|
|
|
7
8
|
import { getThemesFromGlobals } from '@gouvfr-lasuite/cunningham-tokens';
|
|
8
9
|
import { HTMLAttributes } from 'react';
|
|
9
10
|
import { JSX } from 'react/jsx-runtime';
|
|
10
|
-
import { Key } from 'react-stately';
|
|
11
|
+
import { Key as Key_2 } from 'react-stately';
|
|
11
12
|
import { LabelHTMLAttributes } from 'react';
|
|
12
13
|
import { MemoExoticComponent } from 'react';
|
|
13
14
|
import { ModalSize } from '@gouvfr-lasuite/cunningham-react';
|
|
@@ -17,6 +18,7 @@ import { Option as Option_2 } from '@gouvfr-lasuite/cunningham-react';
|
|
|
17
18
|
import { PropsWithChildren } from 'react';
|
|
18
19
|
import { ReactElement } from 'react';
|
|
19
20
|
import { ReactNode } from 'react';
|
|
21
|
+
import { RefObject } from 'react';
|
|
20
22
|
import { SelectProps } from 'react-aria-components';
|
|
21
23
|
import { SetStateAction } from 'react';
|
|
22
24
|
import { TreeApi } from 'react-arborist';
|
|
@@ -67,6 +69,8 @@ export declare type AddShareUserListProps<UserType> = {
|
|
|
67
69
|
onSelectRole: (role: string) => void;
|
|
68
70
|
};
|
|
69
71
|
|
|
72
|
+
export declare const All: (props: IconSvgProps) => JSX.Element;
|
|
73
|
+
|
|
70
74
|
export declare const anctGlobals: {
|
|
71
75
|
font: {
|
|
72
76
|
sizes: {
|
|
@@ -93,7 +97,6 @@ export declare const anctGlobals: {
|
|
|
93
97
|
weights: {
|
|
94
98
|
thin: number;
|
|
95
99
|
extrabold: number;
|
|
96
|
-
black: number;
|
|
97
100
|
};
|
|
98
101
|
families: {
|
|
99
102
|
accent: string;
|
|
@@ -467,6 +470,40 @@ export declare const anctGlobals: {
|
|
|
467
470
|
};
|
|
468
471
|
};
|
|
469
472
|
|
|
473
|
+
export declare const Archive: (props: IconSvgProps) => JSX.Element;
|
|
474
|
+
|
|
475
|
+
export declare const ArrowCornerDownRight: (props: IconSvgProps) => JSX.Element;
|
|
476
|
+
|
|
477
|
+
export declare const ArrowDown: (props: IconSvgProps) => JSX.Element;
|
|
478
|
+
|
|
479
|
+
export declare const ArrowDownCircle: (props: IconSvgProps) => JSX.Element;
|
|
480
|
+
|
|
481
|
+
export declare const ArrowDownCircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
482
|
+
|
|
483
|
+
export declare const ArrowDownLeft: (props: IconSvgProps) => JSX.Element;
|
|
484
|
+
|
|
485
|
+
export declare const ArrowDownRight: (props: IconSvgProps) => JSX.Element;
|
|
486
|
+
|
|
487
|
+
export declare const ArrowLeft: (props: IconSvgProps) => JSX.Element;
|
|
488
|
+
|
|
489
|
+
export declare const ArrowRight: (props: IconSvgProps) => JSX.Element;
|
|
490
|
+
|
|
491
|
+
export declare const ArrowSquarepath: (props: IconSvgProps) => JSX.Element;
|
|
492
|
+
|
|
493
|
+
export declare const ArrowUp: (props: IconSvgProps) => JSX.Element;
|
|
494
|
+
|
|
495
|
+
export declare const ArrowUpCircle: (props: IconSvgProps) => JSX.Element;
|
|
496
|
+
|
|
497
|
+
export declare const ArrowUpCircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
498
|
+
|
|
499
|
+
export declare const ArrowUpDown: (props: IconSvgProps) => JSX.Element;
|
|
500
|
+
|
|
501
|
+
export declare const ArrowUpDownCircle: (props: IconSvgProps) => JSX.Element;
|
|
502
|
+
|
|
503
|
+
export declare const ArrowUpLeft: (props: IconSvgProps) => JSX.Element;
|
|
504
|
+
|
|
505
|
+
export declare const ArrowUpRight: (props: IconSvgProps) => JSX.Element;
|
|
506
|
+
|
|
470
507
|
export declare const AVATAR_COLORS: string[];
|
|
471
508
|
|
|
472
509
|
export declare type AvatarProps = {
|
|
@@ -511,6 +548,90 @@ export declare type BaseTreeViewData<T> = {
|
|
|
511
548
|
nodeType?: Exclude<TreeViewNodeTypeEnum, TreeViewNodeTypeEnum.TITLE | TreeViewNodeTypeEnum.SEPARATOR | TreeViewNodeTypeEnum.VIEW_MORE | TreeViewNodeTypeEnum.SIMPLE_NODE>;
|
|
512
549
|
} & T));
|
|
513
550
|
|
|
551
|
+
export declare const Bento: (props: IconSvgProps) => JSX.Element;
|
|
552
|
+
|
|
553
|
+
export declare const Blur: (props: IconSvgProps) => JSX.Element;
|
|
554
|
+
|
|
555
|
+
export declare const Bold: (props: IconSvgProps) => JSX.Element;
|
|
556
|
+
|
|
557
|
+
export declare const Bolt: (props: IconSvgProps) => JSX.Element;
|
|
558
|
+
|
|
559
|
+
export declare const Book: (props: IconSvgProps) => JSX.Element;
|
|
560
|
+
|
|
561
|
+
export declare const Book2: (props: IconSvgProps) => JSX.Element;
|
|
562
|
+
|
|
563
|
+
export declare const BookFilled: (props: IconSvgProps) => JSX.Element;
|
|
564
|
+
|
|
565
|
+
export declare const BookmarkFilled: (props: IconSvgProps) => JSX.Element;
|
|
566
|
+
|
|
567
|
+
export declare const Bubble: (props: IconSvgProps) => JSX.Element;
|
|
568
|
+
|
|
569
|
+
export declare const BubbleDashed: (props: IconSvgProps) => JSX.Element;
|
|
570
|
+
|
|
571
|
+
export declare const BubbleEdit: (props: IconSvgProps) => JSX.Element;
|
|
572
|
+
|
|
573
|
+
export declare const BubbleLock: (props: IconSvgProps) => JSX.Element;
|
|
574
|
+
|
|
575
|
+
export declare const BubbleText: (props: IconSvgProps) => JSX.Element;
|
|
576
|
+
|
|
577
|
+
export declare const BubbleTextNotif: (props: IconSvgProps) => JSX.Element;
|
|
578
|
+
|
|
579
|
+
export declare const Bug: (props: IconSvgProps) => JSX.Element;
|
|
580
|
+
|
|
581
|
+
export declare const Building: (props: IconSvgProps) => JSX.Element;
|
|
582
|
+
|
|
583
|
+
export declare const BulletedList: (props: IconSvgProps) => JSX.Element;
|
|
584
|
+
|
|
585
|
+
export declare const Burger: (props: IconSvgProps) => JSX.Element;
|
|
586
|
+
|
|
587
|
+
export declare const Calendar: (props: IconSvgProps) => JSX.Element;
|
|
588
|
+
|
|
589
|
+
export declare const Calendar2: (props: IconSvgProps) => JSX.Element;
|
|
590
|
+
|
|
591
|
+
export declare const CalendarClock: (props: IconSvgProps) => JSX.Element;
|
|
592
|
+
|
|
593
|
+
export declare const Callout: (props: IconSvgProps) => JSX.Element;
|
|
594
|
+
|
|
595
|
+
export declare const CamOffAlert: (props: IconSvgProps) => JSX.Element;
|
|
596
|
+
|
|
597
|
+
export declare const CarFilled: (props: IconSvgProps) => JSX.Element;
|
|
598
|
+
|
|
599
|
+
export declare const Change: (props: IconSvgProps) => JSX.Element;
|
|
600
|
+
|
|
601
|
+
export declare const ChartFilled: (props: IconSvgProps) => JSX.Element;
|
|
602
|
+
|
|
603
|
+
export declare const Checkmark: (props: IconSvgProps) => JSX.Element;
|
|
604
|
+
|
|
605
|
+
export declare const Checkmark2: (props: IconSvgProps) => JSX.Element;
|
|
606
|
+
|
|
607
|
+
export declare const CheckmarkFilled: (props: IconSvgProps) => JSX.Element;
|
|
608
|
+
|
|
609
|
+
export declare const CheckmarkShield: (props: IconSvgProps) => JSX.Element;
|
|
610
|
+
|
|
611
|
+
export declare const ChevronDoubleUp: (props: IconSvgProps) => JSX.Element;
|
|
612
|
+
|
|
613
|
+
export declare const ChevronDown: (props: IconSvgProps) => JSX.Element;
|
|
614
|
+
|
|
615
|
+
export declare const ChevronLeft: (props: IconSvgProps) => JSX.Element;
|
|
616
|
+
|
|
617
|
+
export declare const ChevronRight: (props: IconSvgProps) => JSX.Element;
|
|
618
|
+
|
|
619
|
+
export declare const ChevronUp: (props: IconSvgProps) => JSX.Element;
|
|
620
|
+
|
|
621
|
+
export declare const Clock: (props: IconSvgProps) => JSX.Element;
|
|
622
|
+
|
|
623
|
+
export declare const ClockArrowCirclepath: (props: IconSvgProps) => JSX.Element;
|
|
624
|
+
|
|
625
|
+
export declare const CloudArrow: (props: IconSvgProps) => JSX.Element;
|
|
626
|
+
|
|
627
|
+
export declare const Code: (props: IconSvgProps) => JSX.Element;
|
|
628
|
+
|
|
629
|
+
export declare const Color: (props: IconSvgProps) => JSX.Element;
|
|
630
|
+
|
|
631
|
+
export declare const Columns2: (props: IconSvgProps) => JSX.Element;
|
|
632
|
+
|
|
633
|
+
export declare const Columns3: (props: IconSvgProps) => JSX.Element;
|
|
634
|
+
|
|
514
635
|
export declare const containerSizeMap: Record<IconSize, number>;
|
|
515
636
|
|
|
516
637
|
export declare const ContextMenu: <T>({ children, options, context, disabled, asChild, onFocus, onBlur, }: ContextMenuProps<T>) => JSX.Element;
|
|
@@ -556,6 +677,16 @@ export declare type ContextMenuProps<T = unknown> = {
|
|
|
556
677
|
|
|
557
678
|
export declare const ContextMenuProvider: ({ children }: PropsWithChildren) => JSX.Element;
|
|
558
679
|
|
|
680
|
+
export declare const Controls: (props: IconSvgProps) => JSX.Element;
|
|
681
|
+
|
|
682
|
+
export declare const Copy: (props: IconSvgProps) => JSX.Element;
|
|
683
|
+
|
|
684
|
+
export declare const CsvExport: (props: IconSvgProps) => JSX.Element;
|
|
685
|
+
|
|
686
|
+
export declare const CsvImport: (props: IconSvgProps) => JSX.Element;
|
|
687
|
+
|
|
688
|
+
export declare const Cube: (props: IconSvgProps) => JSX.Element;
|
|
689
|
+
|
|
559
690
|
export declare const cunninghamConfig: {
|
|
560
691
|
themes: {
|
|
561
692
|
default: any;
|
|
@@ -565,6 +696,8 @@ export declare const cunninghamConfig: {
|
|
|
565
696
|
|
|
566
697
|
export declare const CunninghamProvider: (props: Parameters<typeof CunninghamProvider_2>[0]) => JSX.Element;
|
|
567
698
|
|
|
699
|
+
export declare const Curlybraces: (props: IconSvgProps) => JSX.Element;
|
|
700
|
+
|
|
568
701
|
export declare const CustomTabs: ({ tabs, defaultSelectedTab, fullWidth, }: TabsProps) => JSX.Element | null;
|
|
569
702
|
|
|
570
703
|
/**
|
|
@@ -572,7 +705,33 @@ export declare const CustomTabs: ({ tabs, defaultSelectedTab, fullWidth, }: Tabs
|
|
|
572
705
|
*/
|
|
573
706
|
export declare type CustomTranslations = Partial<Record<TranslationKey, string>>;
|
|
574
707
|
|
|
575
|
-
export declare const
|
|
708
|
+
export declare const Datagouv: (props: IconSvgProps) => JSX.Element;
|
|
709
|
+
|
|
710
|
+
export declare const Divergence: (props: IconSvgProps) => JSX.Element;
|
|
711
|
+
|
|
712
|
+
export declare const Divider: (props: IconSvgProps) => JSX.Element;
|
|
713
|
+
|
|
714
|
+
export declare const Doc: (props: IconSvgProps) => JSX.Element;
|
|
715
|
+
|
|
716
|
+
export declare const DocAll: (props: IconSvgProps) => JSX.Element;
|
|
717
|
+
|
|
718
|
+
export declare const DocLink: (props: IconSvgProps) => JSX.Element;
|
|
719
|
+
|
|
720
|
+
export declare const DocMoveIn: (props: IconSvgProps) => JSX.Element;
|
|
721
|
+
|
|
722
|
+
export declare const DocMoveOut: (props: IconSvgProps) => JSX.Element;
|
|
723
|
+
|
|
724
|
+
export declare const DocPlus: (props: IconSvgProps) => JSX.Element;
|
|
725
|
+
|
|
726
|
+
export declare const DocSlash: (props: IconSvgProps) => JSX.Element;
|
|
727
|
+
|
|
728
|
+
export declare const Download: (props: IconSvgProps) => JSX.Element;
|
|
729
|
+
|
|
730
|
+
export declare const Drive: (props: IconSvgProps) => JSX.Element;
|
|
731
|
+
|
|
732
|
+
export declare const DriveAlert: (props: IconSvgProps) => JSX.Element;
|
|
733
|
+
|
|
734
|
+
export declare const DropdownMenu: ({ options, isOpen, onOpenChange, children, selectedValues, onSelectValue, topMessage, shouldCloseOnInteractOutside, variant, }: PropsWithChildren<DropdownMenuProps>) => JSX.Element;
|
|
576
735
|
|
|
577
736
|
/**
|
|
578
737
|
* Union type for DropdownMenu items (supports separators)
|
|
@@ -599,6 +758,7 @@ export declare type DropdownMenuProps = {
|
|
|
599
758
|
isOpen?: boolean;
|
|
600
759
|
topMessage?: string | ReactNode;
|
|
601
760
|
shouldCloseOnInteractOutside?: (element: Element) => boolean;
|
|
761
|
+
variant?: "default" | "tiny";
|
|
602
762
|
};
|
|
603
763
|
|
|
604
764
|
export declare const dsfrGlobals: {
|
|
@@ -627,7 +787,6 @@ export declare const dsfrGlobals: {
|
|
|
627
787
|
weights: {
|
|
628
788
|
thin: number;
|
|
629
789
|
extrabold: number;
|
|
630
|
-
black: number;
|
|
631
790
|
};
|
|
632
791
|
families: {
|
|
633
792
|
accent: string;
|
|
@@ -998,14 +1157,90 @@ export declare const dsfrGlobals: {
|
|
|
998
1157
|
};
|
|
999
1158
|
};
|
|
1000
1159
|
|
|
1160
|
+
export declare const Edit: (props: IconSvgProps) => JSX.Element;
|
|
1161
|
+
|
|
1162
|
+
export declare const EuroFilled: (props: IconSvgProps) => JSX.Element;
|
|
1163
|
+
|
|
1001
1164
|
/**
|
|
1002
1165
|
* Utility type that combines TranslationKeys with proper constraint checking.
|
|
1003
1166
|
* Use this as the main export for generating translation key types.
|
|
1004
1167
|
*/
|
|
1005
1168
|
declare type ExtractTranslationKeys<T extends TranslationObject> = TranslationKeys<T>;
|
|
1006
1169
|
|
|
1170
|
+
export declare const Face: (props: IconSvgProps) => JSX.Element;
|
|
1171
|
+
|
|
1172
|
+
export declare const FaceRemove: (props: IconSvgProps) => JSX.Element;
|
|
1173
|
+
|
|
1174
|
+
export declare const FastBackward: (props: IconSvgProps) => JSX.Element;
|
|
1175
|
+
|
|
1176
|
+
export declare const FastForward: (props: IconSvgProps) => JSX.Element;
|
|
1177
|
+
|
|
1178
|
+
export declare const FeedbackForm: ({ categories, defaultCategory, showEmailReply, onSend, onCancel, isOpen, onOpenChange, labels: labelsOverride, emailPrivacyUrl, maxFileSize, acceptedFileTypes, isSending, className, placement, shouldFlip, triggerRef: externalTriggerRef, children, }: FeedbackFormProps) => JSX.Element;
|
|
1179
|
+
|
|
1180
|
+
export declare type FeedbackFormData = {
|
|
1181
|
+
category?: string;
|
|
1182
|
+
subject: string;
|
|
1183
|
+
message: string;
|
|
1184
|
+
files?: File[];
|
|
1185
|
+
email?: string;
|
|
1186
|
+
};
|
|
1187
|
+
|
|
1188
|
+
export declare type FeedbackFormLabels = {
|
|
1189
|
+
title: string;
|
|
1190
|
+
subtitle: string;
|
|
1191
|
+
subject: string;
|
|
1192
|
+
subjectPlaceholder: string;
|
|
1193
|
+
message: string;
|
|
1194
|
+
messagePlaceholder: string;
|
|
1195
|
+
uploadFile: string;
|
|
1196
|
+
emailCheckbox: string;
|
|
1197
|
+
emailLabel: string;
|
|
1198
|
+
emailPrivacy: string;
|
|
1199
|
+
emailError: string;
|
|
1200
|
+
cancel: string;
|
|
1201
|
+
send: string;
|
|
1202
|
+
category: string;
|
|
1203
|
+
};
|
|
1204
|
+
|
|
1205
|
+
export declare type FeedbackFormPlacement = "bottom" | "bottom left" | "bottom right" | "bottom start" | "bottom end" | "top" | "top left" | "top right" | "top start" | "top end" | "left" | "right";
|
|
1206
|
+
|
|
1207
|
+
export declare type FeedbackFormProps = {
|
|
1208
|
+
categories?: DropdownMenuItem[];
|
|
1209
|
+
defaultCategory?: string;
|
|
1210
|
+
showEmailReply?: boolean;
|
|
1211
|
+
onSend: (data: FeedbackFormData) => void;
|
|
1212
|
+
onCancel?: () => void;
|
|
1213
|
+
isOpen?: boolean;
|
|
1214
|
+
onOpenChange?: (isOpen: boolean) => void;
|
|
1215
|
+
labels?: Partial<FeedbackFormLabels>;
|
|
1216
|
+
emailPrivacyUrl?: string;
|
|
1217
|
+
maxFileSize?: number;
|
|
1218
|
+
acceptedFileTypes?: string[];
|
|
1219
|
+
isSending?: boolean;
|
|
1220
|
+
className?: string;
|
|
1221
|
+
placement?: FeedbackFormPlacement;
|
|
1222
|
+
shouldFlip?: boolean;
|
|
1223
|
+
triggerRef?: RefObject<HTMLElement | null>;
|
|
1224
|
+
children?: ReactNode;
|
|
1225
|
+
};
|
|
1226
|
+
|
|
1227
|
+
declare const File_2: (props: IconSvgProps) => JSX.Element;
|
|
1228
|
+
export { File_2 as File }
|
|
1229
|
+
|
|
1230
|
+
export declare const FileCheck: (props: IconSvgProps) => JSX.Element;
|
|
1231
|
+
|
|
1232
|
+
export declare const FileError: (props: IconSvgProps) => JSX.Element;
|
|
1233
|
+
|
|
1234
|
+
export declare const FileFilled: (props: IconSvgProps) => JSX.Element;
|
|
1235
|
+
|
|
1236
|
+
export declare const FileImport: (props: IconSvgProps) => JSX.Element;
|
|
1237
|
+
|
|
1238
|
+
export declare const FileShare: (props: IconSvgProps) => JSX.Element;
|
|
1239
|
+
|
|
1007
1240
|
export declare const Filter: (props: FilterProps) => JSX.Element;
|
|
1008
1241
|
|
|
1242
|
+
export declare const FilterNotification: (props: IconSvgProps) => JSX.Element;
|
|
1243
|
+
|
|
1009
1244
|
export declare type FilterOption = Option_2 & {
|
|
1010
1245
|
showSeparator?: boolean;
|
|
1011
1246
|
isChecked?: boolean;
|
|
@@ -1016,14 +1251,48 @@ export declare type FilterProps = {
|
|
|
1016
1251
|
options: FilterOption[];
|
|
1017
1252
|
} & SelectProps;
|
|
1018
1253
|
|
|
1254
|
+
export declare const Folder: (props: IconSvgProps) => JSX.Element;
|
|
1255
|
+
|
|
1256
|
+
export declare const FolderDrive: (props: IconSvgProps) => JSX.Element;
|
|
1257
|
+
|
|
1258
|
+
export declare const FolderDriveZip: (props: IconSvgProps) => JSX.Element;
|
|
1259
|
+
|
|
1260
|
+
export declare const FolderFilled: (props: IconSvgProps) => JSX.Element;
|
|
1261
|
+
|
|
1262
|
+
export declare const FolderPerso: (props: IconSvgProps) => JSX.Element;
|
|
1263
|
+
|
|
1264
|
+
export declare const FolderPlus: (props: IconSvgProps) => JSX.Element;
|
|
1265
|
+
|
|
1266
|
+
export declare const FolderPublic: (props: IconSvgProps) => JSX.Element;
|
|
1267
|
+
|
|
1268
|
+
export declare const FolderShared: (props: IconSvgProps) => JSX.Element;
|
|
1269
|
+
|
|
1270
|
+
export declare const FolderStar: (props: IconSvgProps) => JSX.Element;
|
|
1271
|
+
|
|
1272
|
+
export declare const FoodBred: (props: IconSvgProps) => JSX.Element;
|
|
1273
|
+
|
|
1274
|
+
export declare const FoodBrezel: (props: IconSvgProps) => JSX.Element;
|
|
1275
|
+
|
|
1276
|
+
export declare const FoodCroissant: (props: IconSvgProps) => JSX.Element;
|
|
1277
|
+
|
|
1278
|
+
export declare const FoodGingerbread: (props: IconSvgProps) => JSX.Element;
|
|
1279
|
+
|
|
1280
|
+
export declare const FoodPancake: (props: IconSvgProps) => JSX.Element;
|
|
1281
|
+
|
|
1282
|
+
export declare const FoodPizza: (props: IconSvgProps) => JSX.Element;
|
|
1283
|
+
|
|
1284
|
+
export declare const FoodSpaghetti: (props: IconSvgProps) => JSX.Element;
|
|
1285
|
+
|
|
1286
|
+
export declare const FoodWaffle: (props: IconSvgProps) => JSX.Element;
|
|
1287
|
+
|
|
1019
1288
|
export declare const Footer: ({ externalLinks, legalLinks, license, logo, }: FooterProps) => JSX.Element;
|
|
1020
1289
|
|
|
1021
1290
|
export declare type FooterProps = {
|
|
1022
|
-
externalLinks?: readonly
|
|
1023
|
-
legalLinks?: readonly
|
|
1291
|
+
externalLinks?: readonly Link_2[];
|
|
1292
|
+
legalLinks?: readonly Link_2[];
|
|
1024
1293
|
license?: {
|
|
1025
1294
|
label: string;
|
|
1026
|
-
link:
|
|
1295
|
+
link: Link_2;
|
|
1027
1296
|
};
|
|
1028
1297
|
logo?: {
|
|
1029
1298
|
src: string;
|
|
@@ -1033,6 +1302,18 @@ export declare type FooterProps = {
|
|
|
1033
1302
|
};
|
|
1034
1303
|
};
|
|
1035
1304
|
|
|
1305
|
+
export declare const FormatText: (props: IconSvgProps) => JSX.Element;
|
|
1306
|
+
|
|
1307
|
+
export declare const Gauge: (props: IconSvgProps) => JSX.Element;
|
|
1308
|
+
|
|
1309
|
+
export declare const GearFilled: (props: IconSvgProps) => JSX.Element;
|
|
1310
|
+
|
|
1311
|
+
export declare const GearRounded: (props: IconSvgProps) => JSX.Element;
|
|
1312
|
+
|
|
1313
|
+
export declare const GearRoundedFilled: (props: IconSvgProps) => JSX.Element;
|
|
1314
|
+
|
|
1315
|
+
export declare const GearRoundedNotif: (props: IconSvgProps) => JSX.Element;
|
|
1316
|
+
|
|
1036
1317
|
export declare const getContainerSize: (iconSize: IconSize) => number;
|
|
1037
1318
|
|
|
1038
1319
|
export declare const getIconSize: (iconSize: IconSize) => number;
|
|
@@ -1055,6 +1336,20 @@ export declare const getUserColor: (name: string) => string;
|
|
|
1055
1336
|
*/
|
|
1056
1337
|
export declare const getUserInitials: (name: string) => string;
|
|
1057
1338
|
|
|
1339
|
+
export declare const Github: (props: IconSvgProps) => JSX.Element;
|
|
1340
|
+
|
|
1341
|
+
export declare const Globe: (props: IconSvgProps) => JSX.Element;
|
|
1342
|
+
|
|
1343
|
+
export declare const Globe2: (props: IconSvgProps) => JSX.Element;
|
|
1344
|
+
|
|
1345
|
+
export declare const GlobeLock: (props: IconSvgProps) => JSX.Element;
|
|
1346
|
+
|
|
1347
|
+
export declare const Grip: (props: IconSvgProps) => JSX.Element;
|
|
1348
|
+
|
|
1349
|
+
export declare const HandsClap: (props: IconSvgProps) => JSX.Element;
|
|
1350
|
+
|
|
1351
|
+
export declare const HandTap: (props: IconSvgProps) => JSX.Element;
|
|
1352
|
+
|
|
1058
1353
|
export declare const Header: ({ leftIcon, rightIcon, languages, onTogglePanel, isPanelOpen, }: HeaderProps) => JSX.Element;
|
|
1059
1354
|
|
|
1060
1355
|
export declare const headerHeight = 52;
|
|
@@ -1067,6 +1362,43 @@ export declare type HeaderProps = {
|
|
|
1067
1362
|
isPanelOpen?: boolean;
|
|
1068
1363
|
};
|
|
1069
1364
|
|
|
1365
|
+
export declare const Heading1: (props: IconSvgProps) => JSX.Element;
|
|
1366
|
+
|
|
1367
|
+
export declare const Heading2: (props: IconSvgProps) => JSX.Element;
|
|
1368
|
+
|
|
1369
|
+
export declare const Heading3: (props: IconSvgProps) => JSX.Element;
|
|
1370
|
+
|
|
1371
|
+
export declare const Headset: (props: IconSvgProps) => JSX.Element;
|
|
1372
|
+
|
|
1373
|
+
export declare const HelpMenu: ({ documentationUrl, onOnboarding, onContactUs, feedbackForm, release, }: HelpMenuProps) => JSX.Element | null;
|
|
1374
|
+
|
|
1375
|
+
export declare type HelpMenuFeedbackConfig = {
|
|
1376
|
+
onSend: (data: FeedbackFormData) => void;
|
|
1377
|
+
categories?: DropdownMenuItem[];
|
|
1378
|
+
defaultCategory?: string;
|
|
1379
|
+
showEmailReply?: boolean;
|
|
1380
|
+
emailPrivacyUrl?: string;
|
|
1381
|
+
maxFileSize?: number;
|
|
1382
|
+
acceptedFileTypes?: string[];
|
|
1383
|
+
isSending?: boolean;
|
|
1384
|
+
labels?: Partial<FeedbackFormLabels>;
|
|
1385
|
+
placement?: FeedbackFormPlacement;
|
|
1386
|
+
};
|
|
1387
|
+
|
|
1388
|
+
export declare type HelpMenuProps = {
|
|
1389
|
+
documentationUrl?: string;
|
|
1390
|
+
onOnboarding?: () => void;
|
|
1391
|
+
onContactUs?: () => void;
|
|
1392
|
+
feedbackForm?: HelpMenuFeedbackConfig;
|
|
1393
|
+
release?: HelpMenuRelease;
|
|
1394
|
+
};
|
|
1395
|
+
|
|
1396
|
+
export declare type HelpMenuRelease = {
|
|
1397
|
+
version: string;
|
|
1398
|
+
date?: string;
|
|
1399
|
+
url?: string;
|
|
1400
|
+
};
|
|
1401
|
+
|
|
1070
1402
|
export declare const Hero: ({ logo, mainButton, banner, title, subtitle, }: {
|
|
1071
1403
|
logo: React.ReactNode;
|
|
1072
1404
|
mainButton?: React.ReactNode;
|
|
@@ -1075,14 +1407,66 @@ export declare const Hero: ({ logo, mainButton, banner, title, subtitle, }: {
|
|
|
1075
1407
|
subtitle: string;
|
|
1076
1408
|
}) => JSX.Element;
|
|
1077
1409
|
|
|
1410
|
+
export declare const Hide: (props: IconSvgProps) => JSX.Element;
|
|
1411
|
+
|
|
1412
|
+
declare const Highlight_2: (props: IconSvgProps) => JSX.Element;
|
|
1413
|
+
export { Highlight_2 as Highlight }
|
|
1414
|
+
|
|
1415
|
+
declare const History_2: (props: IconSvgProps) => JSX.Element;
|
|
1416
|
+
export { History_2 as History }
|
|
1417
|
+
|
|
1078
1418
|
export declare const HomeGutter: ({ children }: {
|
|
1079
1419
|
children: React.ReactNode;
|
|
1080
1420
|
}) => JSX.Element;
|
|
1081
1421
|
|
|
1082
1422
|
export declare const HorizontalSeparator: (props: Props_3) => JSX.Element;
|
|
1083
1423
|
|
|
1424
|
+
export declare const House: (props: IconSvgProps) => JSX.Element;
|
|
1425
|
+
|
|
1084
1426
|
export declare const Icon: default_2.FC<IconProps>;
|
|
1085
1427
|
|
|
1428
|
+
export declare const Icon10CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1429
|
+
|
|
1430
|
+
export declare const Icon11CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1431
|
+
|
|
1432
|
+
export declare const Icon12CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1433
|
+
|
|
1434
|
+
export declare const Icon13CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1435
|
+
|
|
1436
|
+
export declare const Icon14CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1437
|
+
|
|
1438
|
+
export declare const Icon15CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1439
|
+
|
|
1440
|
+
export declare const Icon16CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1441
|
+
|
|
1442
|
+
export declare const Icon17CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1443
|
+
|
|
1444
|
+
export declare const Icon18CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1445
|
+
|
|
1446
|
+
export declare const Icon19CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1447
|
+
|
|
1448
|
+
export declare const Icon1CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1449
|
+
|
|
1450
|
+
export declare const Icon20CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1451
|
+
|
|
1452
|
+
export declare const Icon2CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1453
|
+
|
|
1454
|
+
export declare const Icon3CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1455
|
+
|
|
1456
|
+
export declare const Icon4CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1457
|
+
|
|
1458
|
+
export declare const Icon5CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1459
|
+
|
|
1460
|
+
export declare const Icon6CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1461
|
+
|
|
1462
|
+
export declare const Icon7CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1463
|
+
|
|
1464
|
+
export declare const Icon8CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1465
|
+
|
|
1466
|
+
export declare const Icon9CircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
1467
|
+
|
|
1468
|
+
export declare const IconLeftPanel: (props: IconSvgProps) => JSX.Element;
|
|
1469
|
+
|
|
1086
1470
|
export declare type IconProps = {
|
|
1087
1471
|
/**
|
|
1088
1472
|
* The name of the Material Icon to display
|
|
@@ -1110,6 +1494,8 @@ export declare type IconProps = {
|
|
|
1110
1494
|
[key: string]: unknown;
|
|
1111
1495
|
};
|
|
1112
1496
|
|
|
1497
|
+
export declare const IconRightPanel: (props: IconSvgProps) => JSX.Element;
|
|
1498
|
+
|
|
1113
1499
|
export declare enum IconSize {
|
|
1114
1500
|
X_SMALL = "xsmall",
|
|
1115
1501
|
SMALL = "small",
|
|
@@ -1120,11 +1506,21 @@ export declare enum IconSize {
|
|
|
1120
1506
|
|
|
1121
1507
|
export declare const iconSizeMap: Record<IconSize, number>;
|
|
1122
1508
|
|
|
1509
|
+
export declare const IconSvg: (props: React.SVGProps<SVGSVGElement> & IconSvgProps) => JSX.Element;
|
|
1510
|
+
|
|
1511
|
+
export declare type IconSvgProps = Omit<Partial<IconProps>, "name" | "type">;
|
|
1512
|
+
|
|
1123
1513
|
export declare enum IconType {
|
|
1124
1514
|
OUTLINED = "outlined",
|
|
1125
1515
|
FILLED = "filled"
|
|
1126
1516
|
}
|
|
1127
1517
|
|
|
1518
|
+
export declare const Identity: (props: IconSvgProps) => JSX.Element;
|
|
1519
|
+
|
|
1520
|
+
export declare const Info: (props: IconSvgProps) => JSX.Element;
|
|
1521
|
+
|
|
1522
|
+
export declare const Info2: (props: IconSvgProps) => JSX.Element;
|
|
1523
|
+
|
|
1128
1524
|
export declare type InvitationData<UserType, T> = T & {
|
|
1129
1525
|
id: string;
|
|
1130
1526
|
role: string;
|
|
@@ -1144,6 +1540,18 @@ export declare const isTitle: <T>(node?: TreeViewDataType<T>) => boolean;
|
|
|
1144
1540
|
|
|
1145
1541
|
export declare const isViewMore: <T>(node?: TreeViewDataType<T>) => boolean;
|
|
1146
1542
|
|
|
1543
|
+
export declare const Italic: (props: IconSvgProps) => JSX.Element;
|
|
1544
|
+
|
|
1545
|
+
export declare const JusticeFilled: (props: IconSvgProps) => JSX.Element;
|
|
1546
|
+
|
|
1547
|
+
export declare const Key: (props: IconSvgProps) => JSX.Element;
|
|
1548
|
+
|
|
1549
|
+
export declare const Key2: (props: IconSvgProps) => JSX.Element;
|
|
1550
|
+
|
|
1551
|
+
export declare const KeyboardHide: (props: IconSvgProps) => JSX.Element;
|
|
1552
|
+
|
|
1553
|
+
export declare const KeyFilled: (props: IconSvgProps) => JSX.Element;
|
|
1554
|
+
|
|
1147
1555
|
export declare const Label: ({ children, text, ...props }: LabelHTMLAttributes<HTMLLabelElement> & {
|
|
1148
1556
|
text?: string;
|
|
1149
1557
|
}) => JSX.Element;
|
|
@@ -1203,14 +1611,21 @@ export declare type LanguagesOption = DropdownMenuOption & {
|
|
|
1203
1611
|
shortLabel?: string;
|
|
1204
1612
|
};
|
|
1205
1613
|
|
|
1206
|
-
export declare const
|
|
1614
|
+
export declare const LasuiteFilled: (props: IconSvgProps) => JSX.Element;
|
|
1615
|
+
|
|
1616
|
+
export declare const Leaf: (props: IconSvgProps) => JSX.Element;
|
|
1617
|
+
|
|
1618
|
+
export declare const LeftPanel: ({ children, isOpen, hasHeader, footer, }: PropsWithChildren<LeftPanelProps>) => JSX.Element;
|
|
1207
1619
|
|
|
1208
1620
|
export declare type LeftPanelProps = {
|
|
1209
1621
|
isOpen?: boolean;
|
|
1210
1622
|
hasHeader?: boolean;
|
|
1623
|
+
footer?: default_2.ReactNode;
|
|
1211
1624
|
};
|
|
1212
1625
|
|
|
1213
|
-
declare
|
|
1626
|
+
export declare const Link: (props: IconSvgProps) => JSX.Element;
|
|
1627
|
+
|
|
1628
|
+
declare type Link_2 = {
|
|
1214
1629
|
label: string;
|
|
1215
1630
|
href: string;
|
|
1216
1631
|
};
|
|
@@ -1273,6 +1688,11 @@ export declare const locales: {
|
|
|
1273
1688
|
"month_select_button_aria_label": "Select a month";
|
|
1274
1689
|
};
|
|
1275
1690
|
};
|
|
1691
|
+
"calendar": {
|
|
1692
|
+
"reset": "Reset";
|
|
1693
|
+
"cancel": "Cancel";
|
|
1694
|
+
"ok": "OK";
|
|
1695
|
+
};
|
|
1276
1696
|
"modals": {
|
|
1277
1697
|
"helpers": {
|
|
1278
1698
|
"delete_confirmation": {
|
|
@@ -1393,6 +1813,23 @@ export declare const locales: {
|
|
|
1393
1813
|
currentStepSuffix: string;
|
|
1394
1814
|
contentRegionLabel: string;
|
|
1395
1815
|
};
|
|
1816
|
+
feedbackForm: {
|
|
1817
|
+
title: string;
|
|
1818
|
+
subtitle: string;
|
|
1819
|
+
subject: string;
|
|
1820
|
+
subjectPlaceholder: string;
|
|
1821
|
+
message: string;
|
|
1822
|
+
messagePlaceholder: string;
|
|
1823
|
+
uploadFile: string;
|
|
1824
|
+
emailCheckbox: string;
|
|
1825
|
+
emailLabel: string;
|
|
1826
|
+
emailPrivacy: string;
|
|
1827
|
+
emailError: string;
|
|
1828
|
+
cancel: string;
|
|
1829
|
+
send: string;
|
|
1830
|
+
category: string;
|
|
1831
|
+
closeAriaLabel: string;
|
|
1832
|
+
};
|
|
1396
1833
|
};
|
|
1397
1834
|
};
|
|
1398
1835
|
"fr-FR": {
|
|
@@ -1452,6 +1889,11 @@ export declare const locales: {
|
|
|
1452
1889
|
"month_select_button_aria_label": "S\u00E9lectionner un mois";
|
|
1453
1890
|
};
|
|
1454
1891
|
};
|
|
1892
|
+
"calendar": {
|
|
1893
|
+
"reset": "R\u00E9initialiser";
|
|
1894
|
+
"cancel": "Annuler";
|
|
1895
|
+
"ok": "OK";
|
|
1896
|
+
};
|
|
1455
1897
|
"modals": {
|
|
1456
1898
|
"helpers": {
|
|
1457
1899
|
"delete_confirmation": {
|
|
@@ -1572,15 +2014,42 @@ export declare const locales: {
|
|
|
1572
2014
|
currentStepSuffix: string;
|
|
1573
2015
|
contentRegionLabel: string;
|
|
1574
2016
|
};
|
|
2017
|
+
feedbackForm: {
|
|
2018
|
+
title: string;
|
|
2019
|
+
subtitle: string;
|
|
2020
|
+
subject: string;
|
|
2021
|
+
subjectPlaceholder: string;
|
|
2022
|
+
message: string;
|
|
2023
|
+
messagePlaceholder: string;
|
|
2024
|
+
uploadFile: string;
|
|
2025
|
+
emailCheckbox: string;
|
|
2026
|
+
emailLabel: string;
|
|
2027
|
+
emailPrivacy: string;
|
|
2028
|
+
emailError: string;
|
|
2029
|
+
cancel: string;
|
|
2030
|
+
send: string;
|
|
2031
|
+
category: string;
|
|
2032
|
+
closeAriaLabel: string;
|
|
2033
|
+
};
|
|
1575
2034
|
};
|
|
1576
2035
|
};
|
|
1577
2036
|
};
|
|
1578
2037
|
|
|
1579
|
-
|
|
2038
|
+
declare const Lock_2: (props: IconSvgProps) => JSX.Element;
|
|
2039
|
+
export { Lock_2 as Lock }
|
|
2040
|
+
|
|
2041
|
+
export declare const Logout: (props: IconSvgProps) => JSX.Element;
|
|
2042
|
+
|
|
2043
|
+
export declare const Mail: (props: IconSvgProps) => JSX.Element;
|
|
2044
|
+
|
|
2045
|
+
export declare const MailCheckFilled: (props: IconSvgProps) => JSX.Element;
|
|
2046
|
+
|
|
2047
|
+
export declare const MainLayout: ({ icon, children, hideLeftPanelOnDesktop, leftPanelContent, leftPanelFooter, rightPanelContent, rightHeaderContent, languages, enableResize, rightPanelIsOpen, ...props }: PropsWithChildren<MainLayoutProps>) => JSX.Element;
|
|
1580
2048
|
|
|
1581
2049
|
export declare type MainLayoutProps = {
|
|
1582
2050
|
icon?: React.ReactNode;
|
|
1583
2051
|
leftPanelContent?: React.ReactNode;
|
|
2052
|
+
leftPanelFooter?: React.ReactNode;
|
|
1584
2053
|
rightPanelContent?: React.ReactNode;
|
|
1585
2054
|
rightHeaderContent?: React.ReactNode;
|
|
1586
2055
|
languages?: DropdownMenuOption[];
|
|
@@ -1592,6 +2061,10 @@ export declare type MainLayoutProps = {
|
|
|
1592
2061
|
setIsLeftPanelOpen?: (isLeftPanelOpen: boolean) => void;
|
|
1593
2062
|
};
|
|
1594
2063
|
|
|
2064
|
+
export declare const Maximize: (props: IconSvgProps) => JSX.Element;
|
|
2065
|
+
|
|
2066
|
+
export declare const MegaphoneFilled: (props: IconSvgProps) => JSX.Element;
|
|
2067
|
+
|
|
1595
2068
|
/**
|
|
1596
2069
|
* Union type for all menu items
|
|
1597
2070
|
*/
|
|
@@ -1609,7 +2082,9 @@ export declare type MenuItemAction = {
|
|
|
1609
2082
|
isDisabled?: boolean;
|
|
1610
2083
|
isHidden?: boolean;
|
|
1611
2084
|
variant?: "default" | "danger";
|
|
2085
|
+
keepOpen?: boolean;
|
|
1612
2086
|
testId?: string;
|
|
2087
|
+
children?: MenuItem[];
|
|
1613
2088
|
};
|
|
1614
2089
|
|
|
1615
2090
|
/**
|
|
@@ -1619,10 +2094,22 @@ export declare type MenuItemSeparator = {
|
|
|
1619
2094
|
type: "separator";
|
|
1620
2095
|
};
|
|
1621
2096
|
|
|
2097
|
+
export declare const MicOffAlert: (props: IconSvgProps) => JSX.Element;
|
|
2098
|
+
|
|
2099
|
+
export declare const Minus: (props: IconSvgProps) => JSX.Element;
|
|
2100
|
+
|
|
1622
2101
|
export { ModalSize }
|
|
1623
2102
|
|
|
2103
|
+
export declare const MoreCircle: (props: IconSvgProps) => JSX.Element;
|
|
2104
|
+
|
|
2105
|
+
export declare const MusicFilled: (props: IconSvgProps) => JSX.Element;
|
|
2106
|
+
|
|
2107
|
+
export declare const Mute: (props: IconSvgProps) => JSX.Element;
|
|
2108
|
+
|
|
1624
2109
|
export { NodeRendererProps }
|
|
1625
2110
|
|
|
2111
|
+
export declare const NumberedList: (props: IconSvgProps) => JSX.Element;
|
|
2112
|
+
|
|
1626
2113
|
export declare const OnboardingModal: ({ isOpen, size, appName, mainTitle, steps, initialStep, footerLink, hideContent, onSkip, onComplete, onClose, labels, }: OnboardingModalProps) => JSX.Element | null;
|
|
1627
2114
|
|
|
1628
2115
|
export declare interface OnboardingModalProps {
|
|
@@ -1708,6 +2195,44 @@ export declare type PaginatedChildrenResult<T> = {
|
|
|
1708
2195
|
pagination?: BaseTreeViewData<T>["pagination"];
|
|
1709
2196
|
};
|
|
1710
2197
|
|
|
2198
|
+
export declare const PaletteFilled: (props: IconSvgProps) => JSX.Element;
|
|
2199
|
+
|
|
2200
|
+
export declare const Pause: (props: IconSvgProps) => JSX.Element;
|
|
2201
|
+
|
|
2202
|
+
export declare const Perso: (props: IconSvgProps) => JSX.Element;
|
|
2203
|
+
|
|
2204
|
+
export declare const PersoFilled: (props: IconSvgProps) => JSX.Element;
|
|
2205
|
+
|
|
2206
|
+
export declare const Phone: (props: IconSvgProps) => JSX.Element;
|
|
2207
|
+
|
|
2208
|
+
export declare const PhoneArrowUpRight: (props: IconSvgProps) => JSX.Element;
|
|
2209
|
+
|
|
2210
|
+
export declare const PhoneArrowUpRightFilled: (props: IconSvgProps) => JSX.Element;
|
|
2211
|
+
|
|
2212
|
+
export declare const PhoneFilled: (props: IconSvgProps) => JSX.Element;
|
|
2213
|
+
|
|
2214
|
+
export declare const Picture: (props: IconSvgProps) => JSX.Element;
|
|
2215
|
+
|
|
2216
|
+
export declare const PictureFilled: (props: IconSvgProps) => JSX.Element;
|
|
2217
|
+
|
|
2218
|
+
export declare const PictureRemove: (props: IconSvgProps) => JSX.Element;
|
|
2219
|
+
|
|
2220
|
+
export declare const Pin: (props: IconSvgProps) => JSX.Element;
|
|
2221
|
+
|
|
2222
|
+
export declare const PinFilled: (props: IconSvgProps) => JSX.Element;
|
|
2223
|
+
|
|
2224
|
+
export declare const Play: (props: IconSvgProps) => JSX.Element;
|
|
2225
|
+
|
|
2226
|
+
export declare const Play2: (props: IconSvgProps) => JSX.Element;
|
|
2227
|
+
|
|
2228
|
+
export declare const Plus: (props: IconSvgProps) => JSX.Element;
|
|
2229
|
+
|
|
2230
|
+
export declare const PlusDashed: (props: IconSvgProps) => JSX.Element;
|
|
2231
|
+
|
|
2232
|
+
export declare const PlusDashedEdit: (props: IconSvgProps) => JSX.Element;
|
|
2233
|
+
|
|
2234
|
+
export declare const Present: (props: IconSvgProps) => JSX.Element;
|
|
2235
|
+
|
|
1711
2236
|
export declare const ProConnectButton: ({ disabled, onClick, }: ProConnectButtonProps) => JSX.Element;
|
|
1712
2237
|
|
|
1713
2238
|
export declare type ProConnectButtonProps = {
|
|
@@ -1733,6 +2258,14 @@ declare type Props_3 = Omit<AbstractSeparatorProps, "direction">;
|
|
|
1733
2258
|
|
|
1734
2259
|
declare type Props_4 = Omit<AbstractSeparatorProps, "direction">;
|
|
1735
2260
|
|
|
2261
|
+
export declare const Public: (props: IconSvgProps) => JSX.Element;
|
|
2262
|
+
|
|
2263
|
+
export declare const Puzzle: (props: IconSvgProps) => JSX.Element;
|
|
2264
|
+
|
|
2265
|
+
export declare const PuzzleFilled: (props: IconSvgProps) => JSX.Element;
|
|
2266
|
+
|
|
2267
|
+
export declare const QuestionMark: (props: IconSvgProps) => JSX.Element;
|
|
2268
|
+
|
|
1736
2269
|
export declare const QuickSearch: ({ onFilter, inputContent, inputValue, loading, showInput, label, placeholder, children, }: QuickSearchProps) => JSX.Element;
|
|
1737
2270
|
|
|
1738
2271
|
export declare type QuickSearchAction = {
|
|
@@ -1781,6 +2314,10 @@ export declare type QuickSearchProps = {
|
|
|
1781
2314
|
children?: ReactNode;
|
|
1782
2315
|
};
|
|
1783
2316
|
|
|
2317
|
+
export declare const Quote: (props: IconSvgProps) => JSX.Element;
|
|
2318
|
+
|
|
2319
|
+
export declare const RectangleRotate: (props: IconSvgProps) => JSX.Element;
|
|
2320
|
+
|
|
1784
2321
|
export declare const ReleaseNoteModal: ({ steps, ...props }: ReleaseNoteModalProps) => JSX.Element;
|
|
1785
2322
|
|
|
1786
2323
|
export declare interface ReleaseNoteModalProps extends Omit<OnboardingModalProps, "hideContent" | "steps"> {
|
|
@@ -1798,18 +2335,51 @@ export declare interface ReleaseNoteStep {
|
|
|
1798
2335
|
description?: string;
|
|
1799
2336
|
}
|
|
1800
2337
|
|
|
2338
|
+
export declare const Reply: (props: IconSvgProps) => JSX.Element;
|
|
2339
|
+
|
|
1801
2340
|
declare type ResponsiveStates = {
|
|
1802
2341
|
isMobile: boolean;
|
|
1803
2342
|
isTablet: boolean;
|
|
1804
2343
|
isDesktop: boolean;
|
|
1805
2344
|
};
|
|
1806
2345
|
|
|
2346
|
+
export declare const Retry: (props: IconSvgProps) => JSX.Element;
|
|
2347
|
+
|
|
2348
|
+
export declare const RoleUp: (props: IconSvgProps) => JSX.Element;
|
|
2349
|
+
|
|
2350
|
+
export declare const Sd: (props: IconSvgProps) => JSX.Element;
|
|
2351
|
+
|
|
2352
|
+
export declare const SearchFilter: <T extends SearchFilterItem = SearchFilterItem>(props: SearchFilterProps<T>) => JSX.Element;
|
|
2353
|
+
|
|
2354
|
+
export declare type SearchFilterItem = {
|
|
2355
|
+
id: string;
|
|
2356
|
+
label: string;
|
|
2357
|
+
};
|
|
2358
|
+
|
|
2359
|
+
export declare type SearchFilterProps<T extends SearchFilterItem = SearchFilterItem> = {
|
|
2360
|
+
label: string;
|
|
2361
|
+
activeLabel?: string;
|
|
2362
|
+
isActive?: boolean;
|
|
2363
|
+
searchValue?: string;
|
|
2364
|
+
onSearchChange: (value: string) => void;
|
|
2365
|
+
placeholder?: string;
|
|
2366
|
+
items: T[];
|
|
2367
|
+
renderItem: (item: T) => ReactNode;
|
|
2368
|
+
onItemSelect?: (item: T) => void;
|
|
2369
|
+
isLoading?: boolean;
|
|
2370
|
+
emptyState?: ReactNode;
|
|
2371
|
+
isOpen?: boolean;
|
|
2372
|
+
onOpenChange?: (isOpen: boolean) => void;
|
|
2373
|
+
};
|
|
2374
|
+
|
|
1807
2375
|
export declare const SearchUserItem: <UserType>({ user, }: SearchUserItemProps<UserType>) => JSX.Element;
|
|
1808
2376
|
|
|
1809
2377
|
declare type SearchUserItemProps<UserType> = {
|
|
1810
2378
|
user: UserData<UserType>;
|
|
1811
2379
|
};
|
|
1812
2380
|
|
|
2381
|
+
export declare const Server: (props: IconSvgProps) => JSX.Element;
|
|
2382
|
+
|
|
1813
2383
|
export declare type Service = {
|
|
1814
2384
|
name: string;
|
|
1815
2385
|
url: string;
|
|
@@ -1823,6 +2393,8 @@ declare type ServicesResponse = {
|
|
|
1823
2393
|
error?: unknown;
|
|
1824
2394
|
};
|
|
1825
2395
|
|
|
2396
|
+
export declare const Shared: (props: IconSvgProps) => JSX.Element;
|
|
2397
|
+
|
|
1826
2398
|
export declare const ShareInvitationItem: <UserType, InvitationType>({ invitation, roles, updateRole, deleteInvitation, canUpdate, roleTopMessage, }: ShareInvitationItemProps<UserType, InvitationType>) => JSX.Element;
|
|
1827
2399
|
|
|
1828
2400
|
export declare type ShareInvitationItemProps<UserType, InvitationType> = {
|
|
@@ -1921,12 +2493,43 @@ export declare type ShareSelectedUserItemProps<UserType> = {
|
|
|
1921
2493
|
onRemoveUser: (user: UserData<UserType>) => void;
|
|
1922
2494
|
};
|
|
1923
2495
|
|
|
2496
|
+
export declare const ShieldLockFilled: (props: IconSvgProps) => JSX.Element;
|
|
2497
|
+
|
|
2498
|
+
export declare const Sparkles2: (props: IconSvgProps) => JSX.Element;
|
|
2499
|
+
|
|
1924
2500
|
export declare const Spinner: ({ size }: SpinnerProps) => JSX.Element;
|
|
1925
2501
|
|
|
1926
2502
|
declare type SpinnerProps = {
|
|
1927
2503
|
size?: "sm" | "md" | "lg" | "xl";
|
|
1928
2504
|
};
|
|
1929
2505
|
|
|
2506
|
+
export declare const StackTemplate: (props: IconSvgProps) => JSX.Element;
|
|
2507
|
+
|
|
2508
|
+
export declare const Star: (props: IconSvgProps) => JSX.Element;
|
|
2509
|
+
|
|
2510
|
+
export declare const StarFilled: (props: IconSvgProps) => JSX.Element;
|
|
2511
|
+
|
|
2512
|
+
export declare const StarSlash: (props: IconSvgProps) => JSX.Element;
|
|
2513
|
+
|
|
2514
|
+
export declare const StorageGauge: ({ used, total, unit, compact, precision, className, ...props }: StorageGaugeProps) => JSX.Element;
|
|
2515
|
+
|
|
2516
|
+
declare type StorageGaugeProps = Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children"> & {
|
|
2517
|
+
/** Storage used (in the given unit) */
|
|
2518
|
+
used: number;
|
|
2519
|
+
/** Total storage available (in the given unit) */
|
|
2520
|
+
total: number;
|
|
2521
|
+
/** Unit label displayed after the values (default: "Go") */
|
|
2522
|
+
unit?: string;
|
|
2523
|
+
/** Compact mode: hides the gauge bar, shows only the text */
|
|
2524
|
+
compact?: boolean;
|
|
2525
|
+
/** Number of decimal places for the used value (default: 2) */
|
|
2526
|
+
precision?: number;
|
|
2527
|
+
};
|
|
2528
|
+
|
|
2529
|
+
export declare const Strikethrough: (props: IconSvgProps) => JSX.Element;
|
|
2530
|
+
|
|
2531
|
+
export declare const Sun: (props: IconSvgProps) => JSX.Element;
|
|
2532
|
+
|
|
1930
2533
|
export declare type TabData = {
|
|
1931
2534
|
id: string;
|
|
1932
2535
|
label: string;
|
|
@@ -1934,12 +2537,34 @@ export declare type TabData = {
|
|
|
1934
2537
|
content: React.ReactNode;
|
|
1935
2538
|
};
|
|
1936
2539
|
|
|
2540
|
+
export declare const Table: (props: IconSvgProps) => JSX.Element;
|
|
2541
|
+
|
|
1937
2542
|
export declare type TabsProps = {
|
|
1938
2543
|
tabs: TabData[];
|
|
1939
2544
|
defaultSelectedTab?: string;
|
|
1940
2545
|
fullWidth?: boolean;
|
|
1941
2546
|
};
|
|
1942
2547
|
|
|
2548
|
+
export declare const TerminalFilled: (props: IconSvgProps) => JSX.Element;
|
|
2549
|
+
|
|
2550
|
+
export declare const ThumbDown: (props: IconSvgProps) => JSX.Element;
|
|
2551
|
+
|
|
2552
|
+
export declare const ThumbDownFilled: (props: IconSvgProps) => JSX.Element;
|
|
2553
|
+
|
|
2554
|
+
export declare const ThumbUp: (props: IconSvgProps) => JSX.Element;
|
|
2555
|
+
|
|
2556
|
+
export declare const ThumbUpFilled: (props: IconSvgProps) => JSX.Element;
|
|
2557
|
+
|
|
2558
|
+
export declare const TodoList: (props: IconSvgProps) => JSX.Element;
|
|
2559
|
+
|
|
2560
|
+
export declare const ToggleHeading1: (props: IconSvgProps) => JSX.Element;
|
|
2561
|
+
|
|
2562
|
+
export declare const ToggleHeading2: (props: IconSvgProps) => JSX.Element;
|
|
2563
|
+
|
|
2564
|
+
export declare const ToggleHeading3: (props: IconSvgProps) => JSX.Element;
|
|
2565
|
+
|
|
2566
|
+
export declare const ToggleList: (props: IconSvgProps) => JSX.Element;
|
|
2567
|
+
|
|
1943
2568
|
/**
|
|
1944
2569
|
* All available translation keys extracted from the English translation file.
|
|
1945
2570
|
* This type represents all possible keys that can be used with the translation system.
|
|
@@ -1992,6 +2617,8 @@ declare type TranslationValue = string | {
|
|
|
1992
2617
|
[key: string]: TranslationValue;
|
|
1993
2618
|
};
|
|
1994
2619
|
|
|
2620
|
+
export declare const Trash: (props: IconSvgProps) => JSX.Element;
|
|
2621
|
+
|
|
1995
2622
|
export { TreeApi }
|
|
1996
2623
|
|
|
1997
2624
|
export declare const TreeContext: Context<TreeContextType<any> | null>;
|
|
@@ -2085,6 +2712,24 @@ export declare type TreeViewProps<T> = {
|
|
|
2085
2712
|
|
|
2086
2713
|
export declare const TreeViewSeparator: ({ top, left }: CursorProps) => JSX.Element;
|
|
2087
2714
|
|
|
2715
|
+
export declare const Type: (props: IconSvgProps) => JSX.Element;
|
|
2716
|
+
|
|
2717
|
+
export declare const Underline: (props: IconSvgProps) => JSX.Element;
|
|
2718
|
+
|
|
2719
|
+
export declare const Undo: (props: IconSvgProps) => JSX.Element;
|
|
2720
|
+
|
|
2721
|
+
export declare const UndoCircle: (props: IconSvgProps) => JSX.Element;
|
|
2722
|
+
|
|
2723
|
+
export declare const UndoCircleFilled: (props: IconSvgProps) => JSX.Element;
|
|
2724
|
+
|
|
2725
|
+
export declare const Unhide: (props: IconSvgProps) => JSX.Element;
|
|
2726
|
+
|
|
2727
|
+
export declare const Unpin: (props: IconSvgProps) => JSX.Element;
|
|
2728
|
+
|
|
2729
|
+
export declare const UnpinFilled: (props: IconSvgProps) => JSX.Element;
|
|
2730
|
+
|
|
2731
|
+
export declare const Upload: (props: IconSvgProps) => JSX.Element;
|
|
2732
|
+
|
|
2088
2733
|
/**
|
|
2089
2734
|
* useArrowRoving
|
|
2090
2735
|
*
|
|
@@ -2169,6 +2814,15 @@ declare type UserProps = {
|
|
|
2169
2814
|
|
|
2170
2815
|
export declare const UserRow: ({ fullName: full_name, email, showEmail, }: UserProps) => JSX.Element;
|
|
2171
2816
|
|
|
2817
|
+
export declare const UserSearchFilter: (props: UserSearchFilterProps) => JSX.Element;
|
|
2818
|
+
|
|
2819
|
+
export declare type UserSearchFilterItem = SearchFilterItem & {
|
|
2820
|
+
fullName: string;
|
|
2821
|
+
email?: string;
|
|
2822
|
+
};
|
|
2823
|
+
|
|
2824
|
+
export declare type UserSearchFilterProps = Omit<SearchFilterProps<UserSearchFilterItem>, "renderItem">;
|
|
2825
|
+
|
|
2172
2826
|
export declare const useTree: <T>(initialItems: TreeViewDataType<T>[], refreshCallback?: (id: string) => Promise<Partial<TreeViewDataType<T>>>, onLoadChildren?: (id: string, page: number) => Promise<PaginatedChildrenResult<T>>) => {
|
|
2173
2827
|
nodes: TreeDataItem<TreeViewDataType<T>>[];
|
|
2174
2828
|
addChild: (parentId: string | null, newNode: TreeViewDataType<T>, index?: number) => void;
|
|
@@ -2187,13 +2841,13 @@ export declare const useTree: <T>(initialItems: TreeViewDataType<T>[], refreshCa
|
|
|
2187
2841
|
prependToNode: (nodeId: string, newNode: TreeViewDataType<T>) => void;
|
|
2188
2842
|
moveNode: (nodeId: string, newParentId: string | null, newIndex: number) => void;
|
|
2189
2843
|
appendToNode: (nodeId: string, newNode: TreeViewDataType<T>) => void;
|
|
2190
|
-
move: (key:
|
|
2844
|
+
move: (key: Key_2, toParentKey: Key_2 | null, index: number) => void;
|
|
2191
2845
|
resetTree: (newItems?: TreeViewDataType<T>[]) => void;
|
|
2192
2846
|
handleLoadChildren: (nodeId: string) => Promise<never[] | undefined>;
|
|
2193
2847
|
selectNodeById: (nodeId: string) => void;
|
|
2194
2848
|
getParent: (nodeId: string) => TreeViewDataType<T> | null;
|
|
2195
2849
|
getNode: (nodeId: string) => TreeViewDataType<T> | undefined;
|
|
2196
|
-
getParentId: (nodeId: string) =>
|
|
2850
|
+
getParentId: (nodeId: string) => Key_2 | null;
|
|
2197
2851
|
getAncestors: (nodeId: string) => TreeViewDataType<T>[];
|
|
2198
2852
|
};
|
|
2199
2853
|
|
|
@@ -2201,6 +2855,18 @@ export declare const useTreeContext: <T>() => TreeContextType<T> | null;
|
|
|
2201
2855
|
|
|
2202
2856
|
export declare const VerticalSeparator: (props: Props_4) => JSX.Element;
|
|
2203
2857
|
|
|
2858
|
+
export declare const Volume2: (props: IconSvgProps) => JSX.Element;
|
|
2859
|
+
|
|
2860
|
+
export declare const VolumeX: (props: IconSvgProps) => JSX.Element;
|
|
2861
|
+
|
|
2862
|
+
export declare const WandAndStars: (props: IconSvgProps) => JSX.Element;
|
|
2863
|
+
|
|
2864
|
+
export declare const Warning: (props: IconSvgProps) => JSX.Element;
|
|
2865
|
+
|
|
2866
|
+
export declare const WarningFilled: (props: IconSvgProps) => JSX.Element;
|
|
2867
|
+
|
|
2868
|
+
export declare const Weight: (props: IconSvgProps) => JSX.Element;
|
|
2869
|
+
|
|
2204
2870
|
export declare const whiteLabelGlobals: {
|
|
2205
2871
|
font: {
|
|
2206
2872
|
families: {
|
|
@@ -2231,7 +2897,6 @@ export declare const whiteLabelGlobals: {
|
|
|
2231
2897
|
weights: {
|
|
2232
2898
|
thin: number;
|
|
2233
2899
|
extrabold: number;
|
|
2234
|
-
black: number;
|
|
2235
2900
|
};
|
|
2236
2901
|
};
|
|
2237
2902
|
spacings: {
|
|
@@ -2609,4 +3274,14 @@ export declare type WithLabelProps = {
|
|
|
2609
3274
|
labelSide?: "left" | "right";
|
|
2610
3275
|
};
|
|
2611
3276
|
|
|
3277
|
+
export declare const XMark: (props: IconSvgProps) => JSX.Element;
|
|
3278
|
+
|
|
3279
|
+
export declare const Zoom: (props: IconSvgProps) => JSX.Element;
|
|
3280
|
+
|
|
3281
|
+
export declare const Zoom1: (props: IconSvgProps) => JSX.Element;
|
|
3282
|
+
|
|
3283
|
+
export declare const ZoomMinus: (props: IconSvgProps) => JSX.Element;
|
|
3284
|
+
|
|
3285
|
+
export declare const ZoomPlus: (props: IconSvgProps) => JSX.Element;
|
|
3286
|
+
|
|
2612
3287
|
export { }
|