dfh-ui-library 1.13.81 → 1.13.83
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/ButtonGroupFormGen/ButtonGroupWithMultiSelectFormGen.d.ts +4 -0
- package/dist/cjs/types/components/ButtonGroupFormGen/index.d.ts +1 -0
- package/dist/cjs/types/components/ButtonGroupWithInputsFormGen/ButtonGroupMultiSelectWithInputsFormGen.d.ts +3 -0
- package/dist/cjs/types/components/ButtonGroupWithInputsFormGen/index.d.ts +1 -0
- package/dist/cjs/types/components/index.d.ts +2 -0
- package/dist/cjs/types/shared/models/components/common.model.d.ts +57 -25
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/ButtonGroupFormGen/ButtonGroupWithMultiSelectFormGen.d.ts +4 -0
- package/dist/esm/types/components/ButtonGroupFormGen/index.d.ts +1 -0
- package/dist/esm/types/components/ButtonGroupWithInputsFormGen/ButtonGroupMultiSelectWithInputsFormGen.d.ts +3 -0
- package/dist/esm/types/components/ButtonGroupWithInputsFormGen/index.d.ts +1 -0
- package/dist/esm/types/components/index.d.ts +2 -0
- package/dist/esm/types/shared/models/components/common.model.d.ts +57 -25
- package/dist/index.d.ts +57 -21
- package/package.json +1 -1
@@ -0,0 +1,4 @@
|
|
1
|
+
import React from "react";
|
2
|
+
import { FormGenButtonGroupMultiSelectProps } from "../../shared/models/components/common.model";
|
3
|
+
declare const ButtonGroupWithMultiSelectFormGen: React.FC<FormGenButtonGroupMultiSelectProps>;
|
4
|
+
export default ButtonGroupWithMultiSelectFormGen;
|
@@ -0,0 +1,3 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { FormGenButtonGroupMultiSelectProps } from '../../shared/models/components/common.model';
|
3
|
+
export default function ButtonGroupMultiSelectWithInputsFormGen({ id, options, onSelect, label, isAdditionalErrorInput, error, additionalErrorClasses, selected, inputObjects, orderBy, additionalClasses, secondaryComponentsVisible, viewMode, previousData, tooltip, }: FormGenButtonGroupMultiSelectProps): React.JSX.Element;
|
@@ -65,3 +65,5 @@ export { default as TodosV2 } from './SideBarListView/todosV2';
|
|
65
65
|
export { default as UrgentChallenges } from './SideBarListView/urgentChallenges';
|
66
66
|
export { default as SsnInput } from './SsnInput';
|
67
67
|
export { default as MultiSelectFormGen } from './MultiSelectFormGen';
|
68
|
+
export { default as ButtonGroupMultiSelectWithInputsFormGen } from './ButtonGroupWithInputsFormGen/ButtonGroupMultiSelectWithInputsFormGen';
|
69
|
+
export { default as ButtonGroupWithMultiSelectFormGen } from './ButtonGroupFormGen/ButtonGroupWithMultiSelectFormGen';
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { ReactNode } from
|
2
|
-
import { selectType, VariantTypes } from
|
3
|
-
import { ColumnDef, OnChangeFn, PaginationState, SortingState } from
|
4
|
-
import { ITodoToggleRequestParams } from
|
5
|
-
export type AlignmentType =
|
6
|
-
export type IconColorTypes =
|
7
|
-
export type IconHoverColorTypes =
|
8
|
-
export type IconType =
|
1
|
+
import { ReactNode } from "react";
|
2
|
+
import { selectType, VariantTypes } from "./base.model";
|
3
|
+
import { ColumnDef, OnChangeFn, PaginationState, SortingState } from "@tanstack/react-table";
|
4
|
+
import { ITodoToggleRequestParams } from "../../../components/SideBarListView/todos";
|
5
|
+
export type AlignmentType = "center" | "left" | "right";
|
6
|
+
export type IconColorTypes = "white" | "black-900" | "gray-220" | "gray-720" | "inherit" | "gray-300" | string;
|
7
|
+
export type IconHoverColorTypes = "white" | "black-900" | "gray-220" | "inherit";
|
8
|
+
export type IconType = "Home" | "Info" | "Email" | "RightArrow" | "DropDown" | "DropDownArrow" | "WhiteArrow" | "TrashIcon" | "AddNewitemIcon" | "OkIcon" | "EditIcon" | "Delete" | "AddIcon" | "RemoveTrashIcon" | "RoundTickIcon" | "ValidationWarningIcon" | "WarningIcon" | "NeturalIcon" | "SuccessIcon" | string;
|
9
9
|
export interface IChildrenProp {
|
10
10
|
/**
|
11
11
|
* Se the child node and element;
|
@@ -37,10 +37,10 @@ export interface IDataTestIdProp {
|
|
37
37
|
export interface IOnClickEventProps {
|
38
38
|
onClick?: () => void;
|
39
39
|
}
|
40
|
-
export type InputType =
|
41
|
-
export type TyphoTypes =
|
42
|
-
export type TyphoComponents =
|
43
|
-
export type MessageTypes =
|
40
|
+
export type InputType = "text" | "email" | "password" | "name" | "date" | "number";
|
41
|
+
export type TyphoTypes = "h1" | "h1Bold" | "h1ExtraBold" | "h2" | "h2Bold" | "h2ExtraBold" | "h10" | "h10Bold" | "h10ExtraBold" | "h6" | "h6Bold" | "h6ExtraBold" | "header1" | "header2" | "label1" | "label2" | "p" | "authHeader" | "inforTextNormal" | "inforTextGray" | "linkTextNormal" | "linkTextMedium" | "textMediumGray" | "textSectionHeader";
|
42
|
+
export type TyphoComponents = "p" | "span" | "em" | "div" | undefined;
|
43
|
+
export type MessageTypes = "warning" | "success" | "error" | "disabled" | "highlight" | "nutral";
|
44
44
|
export interface IInputValidationProps {
|
45
45
|
/**
|
46
46
|
* Set validation message
|
@@ -157,7 +157,7 @@ export interface ImageInputProps {
|
|
157
157
|
/**
|
158
158
|
* Set new variant of the input
|
159
159
|
*/
|
160
|
-
inputVariant?:
|
160
|
+
inputVariant?: "default" | "large";
|
161
161
|
/**
|
162
162
|
* Set Input name
|
163
163
|
*/
|
@@ -231,7 +231,7 @@ export interface CustomDatePickerProps {
|
|
231
231
|
* Ser Error message
|
232
232
|
*/
|
233
233
|
isBorderedError?: boolean;
|
234
|
-
labelType?:
|
234
|
+
labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
|
235
235
|
additionalClasses?: string | undefined;
|
236
236
|
readOnly?: boolean;
|
237
237
|
type?: InputType;
|
@@ -239,7 +239,7 @@ export interface CustomDatePickerProps {
|
|
239
239
|
/**
|
240
240
|
* Set new variant of the input
|
241
241
|
*/
|
242
|
-
inputVariant?:
|
242
|
+
inputVariant?: "default" | "large" | "form";
|
243
243
|
iconType?: string;
|
244
244
|
iconClasses?: string;
|
245
245
|
dateFormat?: string;
|
@@ -259,13 +259,13 @@ export interface PhoneNumberInputProps {
|
|
259
259
|
* Ser Error message
|
260
260
|
*/
|
261
261
|
isBorderedError?: boolean;
|
262
|
-
labelType?:
|
262
|
+
labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
|
263
263
|
readOnly?: boolean;
|
264
264
|
type?: InputType;
|
265
265
|
/**
|
266
266
|
* Set new variant of the input
|
267
267
|
*/
|
268
|
-
inputVariant?:
|
268
|
+
inputVariant?: "default" | "large";
|
269
269
|
label?: string | undefined;
|
270
270
|
additionalErrorClasses?: string;
|
271
271
|
isAdditionalErrorInput?: boolean;
|
@@ -281,10 +281,10 @@ export interface SsnInputProps {
|
|
281
281
|
additionalClasses?: string | undefined;
|
282
282
|
error?: string;
|
283
283
|
isBorderedError?: boolean;
|
284
|
-
labelType?:
|
284
|
+
labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
|
285
285
|
readOnly?: boolean;
|
286
286
|
type?: string;
|
287
|
-
inputVariant?:
|
287
|
+
inputVariant?: "default" | "large";
|
288
288
|
label?: string | undefined;
|
289
289
|
additionalErrorClasses?: string;
|
290
290
|
isAdditionalErrorInput?: boolean;
|
@@ -365,7 +365,7 @@ export interface IMultiSelectProps {
|
|
365
365
|
value: IMultiSelectOption[];
|
366
366
|
};
|
367
367
|
name: string;
|
368
|
-
labelType?:
|
368
|
+
labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum" | "formLabel";
|
369
369
|
label?: string | undefined;
|
370
370
|
labelClasses?: string | undefined;
|
371
371
|
defaultText?: string | undefined;
|
@@ -398,6 +398,7 @@ export interface DropdownSearchProps {
|
|
398
398
|
onSelectedValuesChange?: (selectedValue: OptionProps) => void;
|
399
399
|
buttonProps?: BtnOptionDropdown[];
|
400
400
|
defaultValue?: string;
|
401
|
+
defaultValueCharLimit?: number;
|
401
402
|
additionalErrorClasses?: string;
|
402
403
|
error?: string;
|
403
404
|
additionalClasses?: string;
|
@@ -476,7 +477,7 @@ export declare enum ClickedAction {
|
|
476
477
|
ADDUNREGISTERED = "ADDUNREGISTERED",
|
477
478
|
REMOVE = "REMOVE"
|
478
479
|
}
|
479
|
-
export type LableTypes =
|
480
|
+
export type LableTypes = "default" | "black" | "smallSelect" | "blackSmall" | "formLabel" | "formLabelMedeum";
|
480
481
|
interface InputObject {
|
481
482
|
id: number;
|
482
483
|
label?: string;
|
@@ -587,7 +588,7 @@ export declare enum BADGETYPE {
|
|
587
588
|
BUTTON = "button",
|
588
589
|
BORDEREDBLUE = "bordered-blue"
|
589
590
|
}
|
590
|
-
export type BadgeColorVariant =
|
591
|
+
export type BadgeColorVariant = "default" | "dark" | "red" | "green" | "yellow" | "indigo" | "purple" | "pink" | "error" | "success" | "warning" | "gray" | "darkGreen" | "darkBlue";
|
591
592
|
interface IBadgePropsBase extends AdditionalClassesProp {
|
592
593
|
/** Type of badge based on predefined styles. */
|
593
594
|
badgeType?: BADGETYPE;
|
@@ -680,7 +681,38 @@ export interface FormGenButtonGroupProps extends FormGenInputGroupProps {
|
|
680
681
|
};
|
681
682
|
tooltip?: string;
|
682
683
|
}
|
684
|
+
export interface FormGenButtonGroupMultiSelectProps extends FormGenInputGroupProps {
|
685
|
+
id?: string;
|
686
|
+
options: {
|
687
|
+
id: number;
|
688
|
+
value: string;
|
689
|
+
}[];
|
690
|
+
onSelect: (selectedOption: (selectedValue & {
|
691
|
+
value?: any[];
|
692
|
+
}) | any) => void;
|
693
|
+
label?: string;
|
694
|
+
error?: string;
|
695
|
+
isAdditionalErrorInput?: boolean;
|
696
|
+
additionalErrorClasses?: string;
|
697
|
+
selected?: Omit<selectedValue, 'answerPrevData'> & {
|
698
|
+
value?: any[];
|
699
|
+
answerPrevData?: {
|
700
|
+
lastEditedDate?: string;
|
701
|
+
answerLabel?: string[];
|
702
|
+
};
|
703
|
+
};
|
704
|
+
additionalClasses?: string;
|
705
|
+
onFileChange?: (file: File | null) => void;
|
706
|
+
secondaryComponentsVisible?: boolean;
|
707
|
+
viewMode?: boolean;
|
708
|
+
previousData?: {
|
709
|
+
answerLabel: string;
|
710
|
+
lastEditedDate?: string;
|
711
|
+
};
|
712
|
+
tooltip?: string;
|
713
|
+
}
|
683
714
|
export interface selectedValue {
|
715
|
+
id?: number;
|
684
716
|
value?: any;
|
685
717
|
additionalValues?: any;
|
686
718
|
valueRef?: any;
|
@@ -770,7 +802,7 @@ export interface SideBarListProps {
|
|
770
802
|
}
|
771
803
|
export interface PatientConsentProps {
|
772
804
|
consentDate?: string | Date | null;
|
773
|
-
consentStatus:
|
805
|
+
consentStatus: "NO CONSENT" | "CONSENT GIVEN";
|
774
806
|
consentBy?: string;
|
775
807
|
}
|
776
808
|
export interface UrgentDataProps {
|
@@ -793,7 +825,7 @@ export interface ListMasterDataProps {
|
|
793
825
|
limit?: number;
|
794
826
|
}
|
795
827
|
export interface challengesListProps {
|
796
|
-
urgency?:
|
828
|
+
urgency?: "Normal" | "Urgent";
|
797
829
|
challengeName?: string;
|
798
830
|
}
|
799
831
|
export interface TimelineEventProps {
|
@@ -921,7 +953,7 @@ export interface SignatureProps {
|
|
921
953
|
selected?: selectedValue;
|
922
954
|
onSelect: (signature: string) => void;
|
923
955
|
label?: string;
|
924
|
-
labelType?:
|
956
|
+
labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
|
925
957
|
}
|
926
958
|
export interface SolutionItem {
|
927
959
|
solution: ISolutionvalues;
|
package/dist/index.d.ts
CHANGED
@@ -23,10 +23,10 @@ interface todosProps {
|
|
23
23
|
}
|
24
24
|
declare const Todos: React__default.FC<todosProps>;
|
25
25
|
|
26
|
-
type AlignmentType =
|
27
|
-
type IconColorTypes =
|
28
|
-
type IconHoverColorTypes =
|
29
|
-
type IconType =
|
26
|
+
type AlignmentType = "center" | "left" | "right";
|
27
|
+
type IconColorTypes = "white" | "black-900" | "gray-220" | "gray-720" | "inherit" | "gray-300" | string;
|
28
|
+
type IconHoverColorTypes = "white" | "black-900" | "gray-220" | "inherit";
|
29
|
+
type IconType = "Home" | "Info" | "Email" | "RightArrow" | "DropDown" | "DropDownArrow" | "WhiteArrow" | "TrashIcon" | "AddNewitemIcon" | "OkIcon" | "EditIcon" | "Delete" | "AddIcon" | "RemoveTrashIcon" | "RoundTickIcon" | "ValidationWarningIcon" | "WarningIcon" | "NeturalIcon" | "SuccessIcon" | string;
|
30
30
|
interface IChildrenProp {
|
31
31
|
/**
|
32
32
|
* Se the child node and element;
|
@@ -52,9 +52,9 @@ interface IAdditionalClassesProp {
|
|
52
52
|
interface IOnClickEventProps {
|
53
53
|
onClick?: () => void;
|
54
54
|
}
|
55
|
-
type InputType =
|
56
|
-
type TyphoTypes$1 =
|
57
|
-
type TyphoComponents =
|
55
|
+
type InputType = "text" | "email" | "password" | "name" | "date" | "number";
|
56
|
+
type TyphoTypes$1 = "h1" | "h1Bold" | "h1ExtraBold" | "h2" | "h2Bold" | "h2ExtraBold" | "h10" | "h10Bold" | "h10ExtraBold" | "h6" | "h6Bold" | "h6ExtraBold" | "header1" | "header2" | "label1" | "label2" | "p" | "authHeader" | "inforTextNormal" | "inforTextGray" | "linkTextNormal" | "linkTextMedium" | "textMediumGray" | "textSectionHeader";
|
57
|
+
type TyphoComponents = "p" | "span" | "em" | "div" | undefined;
|
58
58
|
interface IInputValidationProps {
|
59
59
|
/**
|
60
60
|
* Set validation message
|
@@ -135,7 +135,7 @@ interface ImageInputProps {
|
|
135
135
|
/**
|
136
136
|
* Set new variant of the input
|
137
137
|
*/
|
138
|
-
inputVariant?:
|
138
|
+
inputVariant?: "default" | "large";
|
139
139
|
/**
|
140
140
|
* Set Input name
|
141
141
|
*/
|
@@ -209,7 +209,7 @@ interface CustomDatePickerProps {
|
|
209
209
|
* Ser Error message
|
210
210
|
*/
|
211
211
|
isBorderedError?: boolean;
|
212
|
-
labelType?:
|
212
|
+
labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
|
213
213
|
additionalClasses?: string | undefined;
|
214
214
|
readOnly?: boolean;
|
215
215
|
type?: InputType;
|
@@ -217,7 +217,7 @@ interface CustomDatePickerProps {
|
|
217
217
|
/**
|
218
218
|
* Set new variant of the input
|
219
219
|
*/
|
220
|
-
inputVariant?:
|
220
|
+
inputVariant?: "default" | "large" | "form";
|
221
221
|
iconType?: string;
|
222
222
|
iconClasses?: string;
|
223
223
|
dateFormat?: string;
|
@@ -237,13 +237,13 @@ interface PhoneNumberInputProps {
|
|
237
237
|
* Ser Error message
|
238
238
|
*/
|
239
239
|
isBorderedError?: boolean;
|
240
|
-
labelType?:
|
240
|
+
labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
|
241
241
|
readOnly?: boolean;
|
242
242
|
type?: InputType;
|
243
243
|
/**
|
244
244
|
* Set new variant of the input
|
245
245
|
*/
|
246
|
-
inputVariant?:
|
246
|
+
inputVariant?: "default" | "large";
|
247
247
|
label?: string | undefined;
|
248
248
|
additionalErrorClasses?: string;
|
249
249
|
isAdditionalErrorInput?: boolean;
|
@@ -259,10 +259,10 @@ interface SsnInputProps {
|
|
259
259
|
additionalClasses?: string | undefined;
|
260
260
|
error?: string;
|
261
261
|
isBorderedError?: boolean;
|
262
|
-
labelType?:
|
262
|
+
labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
|
263
263
|
readOnly?: boolean;
|
264
264
|
type?: string;
|
265
|
-
inputVariant?:
|
265
|
+
inputVariant?: "default" | "large";
|
266
266
|
label?: string | undefined;
|
267
267
|
additionalErrorClasses?: string;
|
268
268
|
isAdditionalErrorInput?: boolean;
|
@@ -343,7 +343,7 @@ interface IMultiSelectProps {
|
|
343
343
|
value: IMultiSelectOption[];
|
344
344
|
};
|
345
345
|
name: string;
|
346
|
-
labelType?:
|
346
|
+
labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum" | "formLabel";
|
347
347
|
label?: string | undefined;
|
348
348
|
labelClasses?: string | undefined;
|
349
349
|
defaultText?: string | undefined;
|
@@ -376,6 +376,7 @@ interface DropdownSearchProps {
|
|
376
376
|
onSelectedValuesChange?: (selectedValue: OptionProps) => void;
|
377
377
|
buttonProps?: BtnOptionDropdown[];
|
378
378
|
defaultValue?: string;
|
379
|
+
defaultValueCharLimit?: number;
|
379
380
|
additionalErrorClasses?: string;
|
380
381
|
error?: string;
|
381
382
|
additionalClasses?: string;
|
@@ -439,7 +440,7 @@ declare enum ClickedAction {
|
|
439
440
|
ADDUNREGISTERED = "ADDUNREGISTERED",
|
440
441
|
REMOVE = "REMOVE"
|
441
442
|
}
|
442
|
-
type LableTypes =
|
443
|
+
type LableTypes = "default" | "black" | "smallSelect" | "blackSmall" | "formLabel" | "formLabelMedeum";
|
443
444
|
interface InputObject {
|
444
445
|
id: number;
|
445
446
|
label?: string;
|
@@ -529,7 +530,7 @@ declare enum BADGETYPE {
|
|
529
530
|
BUTTON = "button",
|
530
531
|
BORDEREDBLUE = "bordered-blue"
|
531
532
|
}
|
532
|
-
type BadgeColorVariant =
|
533
|
+
type BadgeColorVariant = "default" | "dark" | "red" | "green" | "yellow" | "indigo" | "purple" | "pink" | "error" | "success" | "warning" | "gray" | "darkGreen" | "darkBlue";
|
533
534
|
interface IBadgePropsBase extends AdditionalClassesProp$1 {
|
534
535
|
/** Type of badge based on predefined styles. */
|
535
536
|
badgeType?: BADGETYPE;
|
@@ -589,7 +590,38 @@ interface FormGenButtonGroupProps extends FormGenInputGroupProps {
|
|
589
590
|
};
|
590
591
|
tooltip?: string;
|
591
592
|
}
|
593
|
+
interface FormGenButtonGroupMultiSelectProps extends FormGenInputGroupProps {
|
594
|
+
id?: string;
|
595
|
+
options: {
|
596
|
+
id: number;
|
597
|
+
value: string;
|
598
|
+
}[];
|
599
|
+
onSelect: (selectedOption: (selectedValue & {
|
600
|
+
value?: any[];
|
601
|
+
}) | any) => void;
|
602
|
+
label?: string;
|
603
|
+
error?: string;
|
604
|
+
isAdditionalErrorInput?: boolean;
|
605
|
+
additionalErrorClasses?: string;
|
606
|
+
selected?: Omit<selectedValue, 'answerPrevData'> & {
|
607
|
+
value?: any[];
|
608
|
+
answerPrevData?: {
|
609
|
+
lastEditedDate?: string;
|
610
|
+
answerLabel?: string[];
|
611
|
+
};
|
612
|
+
};
|
613
|
+
additionalClasses?: string;
|
614
|
+
onFileChange?: (file: File | null) => void;
|
615
|
+
secondaryComponentsVisible?: boolean;
|
616
|
+
viewMode?: boolean;
|
617
|
+
previousData?: {
|
618
|
+
answerLabel: string;
|
619
|
+
lastEditedDate?: string;
|
620
|
+
};
|
621
|
+
tooltip?: string;
|
622
|
+
}
|
592
623
|
interface selectedValue {
|
624
|
+
id?: number;
|
593
625
|
value?: any;
|
594
626
|
additionalValues?: any;
|
595
627
|
valueRef?: any;
|
@@ -661,7 +693,7 @@ interface SideBarListProps {
|
|
661
693
|
}
|
662
694
|
interface PatientConsentProps {
|
663
695
|
consentDate?: string | Date | null;
|
664
|
-
consentStatus:
|
696
|
+
consentStatus: "NO CONSENT" | "CONSENT GIVEN";
|
665
697
|
consentBy?: string;
|
666
698
|
}
|
667
699
|
interface UrgentDataProps {
|
@@ -684,7 +716,7 @@ interface ListMasterDataProps {
|
|
684
716
|
limit?: number;
|
685
717
|
}
|
686
718
|
interface challengesListProps {
|
687
|
-
urgency?:
|
719
|
+
urgency?: "Normal" | "Urgent";
|
688
720
|
challengeName?: string;
|
689
721
|
}
|
690
722
|
interface TimelineEventProps {
|
@@ -808,7 +840,7 @@ interface SignatureProps {
|
|
808
840
|
selected?: selectedValue;
|
809
841
|
onSelect: (signature: string) => void;
|
810
842
|
label?: string;
|
811
|
-
labelType?:
|
843
|
+
labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
|
812
844
|
}
|
813
845
|
interface SolutionItem {
|
814
846
|
solution: ISolutionvalues;
|
@@ -1630,8 +1662,12 @@ declare const ButtonGroupWithUpload: React__default.FC<ButtonGroupWithUploadProp
|
|
1630
1662
|
|
1631
1663
|
declare const ButtonGroupFormGen: React__default.FC<FormGenButtonGroupProps>;
|
1632
1664
|
|
1665
|
+
declare const ButtonGroupWithMultiSelectFormGen: React__default.FC<FormGenButtonGroupMultiSelectProps>;
|
1666
|
+
|
1633
1667
|
declare const ButtonGroupWithInputsFormGen: React__default.FC<FormGenButtonGroupProps>;
|
1634
1668
|
|
1669
|
+
declare function ButtonGroupMultiSelectWithInputsFormGen({ id, options, onSelect, label, isAdditionalErrorInput, error, additionalErrorClasses, selected, inputObjects, orderBy, additionalClasses, secondaryComponentsVisible, viewMode, previousData, tooltip, }: FormGenButtonGroupMultiSelectProps): React__default.JSX.Element;
|
1670
|
+
|
1635
1671
|
declare const DynamicDualInputTextGroupFormGen: React__default.FC<DyanamicDualInputProps>;
|
1636
1672
|
|
1637
1673
|
declare const FilterButtonGroup: React__default.FC<ButtonGroupProps>;
|
@@ -2075,5 +2111,5 @@ declare const themeConfigs: {
|
|
2075
2111
|
plugins: any[];
|
2076
2112
|
};
|
2077
2113
|
|
2078
|
-
export { BADGETYPE, Badge, BorderType, Breadcrumb, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupMultiSelectV2, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithUpload, ButtonV2, Card, Checkbox as CheckBox, CheckBoxComponent, ClickedAction, ComboBox, ConboboxV2 as ComboboxV2, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, HistoryDetails, Icon, IconInput, IconInputV2, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, InputDatePicker, InputDatePickerV2, InputValidation, InputsGroup, Label, ListRow, LoadingSpinner, Logo, Message, Modal, MultiSelectFormGen, NavBar, NoteEditor, NoteEditorV2, PanelCard, PhoneNumberInput, PhoneNumberInput2, PhoneNumberInput3, PreviousDataBadge, ProgressBar, RadioButton, RegularDropdown, Row, SearchDropdownWithButton, Select, SelectUserWithButton, SelectV2, SideBarListView, Signature, SortDropdown, Spinner, SsnInput, Stepper, Tab, TabButton, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Timeline, Todos, TodosV2, Tooltip, TooltipWithChildren, Typho, Typhography, TyphographyFormGen, UrgentChallenges, useSchemaProcessor as UseSchemaProcessor, VersionDateDropdown, themeConfigs, usePagination, useSorting };
|
2114
|
+
export { BADGETYPE, Badge, BorderType, Breadcrumb, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupMultiSelectV2, ButtonGroupMultiSelectWithInputsFormGen, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithMultiSelectFormGen, ButtonGroupWithUpload, ButtonV2, Card, Checkbox as CheckBox, CheckBoxComponent, ClickedAction, ComboBox, ConboboxV2 as ComboboxV2, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, HistoryDetails, Icon, IconInput, IconInputV2, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, InputDatePicker, InputDatePickerV2, InputValidation, InputsGroup, Label, ListRow, LoadingSpinner, Logo, Message, Modal, MultiSelectFormGen, NavBar, NoteEditor, NoteEditorV2, PanelCard, PhoneNumberInput, PhoneNumberInput2, PhoneNumberInput3, PreviousDataBadge, ProgressBar, RadioButton, RegularDropdown, Row, SearchDropdownWithButton, Select, SelectUserWithButton, SelectV2, SideBarListView, Signature, SortDropdown, Spinner, SsnInput, Stepper, Tab, TabButton, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Timeline, Todos, TodosV2, Tooltip, TooltipWithChildren, Typho, Typhography, TyphographyFormGen, UrgentChallenges, useSchemaProcessor as UseSchemaProcessor, VersionDateDropdown, themeConfigs, usePagination, useSorting };
|
2079
2115
|
export type { AccountPopoverMenuItem, BadgeColorVariant, BtnOptionDropdown, DropdownSearchProps, ISolutionvalues, InputType, ListMasterDataProps, LogoProps, MessageProps, NoteChildrenProps, NoteHistoryProps, NoteItemProps, NoteProps, OptionProps, TimelineEventProps, UrgentDataProps, VariantTypes };
|