dfh-ui-library 1.13.80 → 1.13.82
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 +56 -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 +56 -25
- package/dist/index.d.ts +56 -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;
|
@@ -476,7 +476,7 @@ export declare enum ClickedAction {
|
|
476
476
|
ADDUNREGISTERED = "ADDUNREGISTERED",
|
477
477
|
REMOVE = "REMOVE"
|
478
478
|
}
|
479
|
-
export type LableTypes =
|
479
|
+
export type LableTypes = "default" | "black" | "smallSelect" | "blackSmall" | "formLabel" | "formLabelMedeum";
|
480
480
|
interface InputObject {
|
481
481
|
id: number;
|
482
482
|
label?: string;
|
@@ -587,7 +587,7 @@ export declare enum BADGETYPE {
|
|
587
587
|
BUTTON = "button",
|
588
588
|
BORDEREDBLUE = "bordered-blue"
|
589
589
|
}
|
590
|
-
export type BadgeColorVariant =
|
590
|
+
export type BadgeColorVariant = "default" | "dark" | "red" | "green" | "yellow" | "indigo" | "purple" | "pink" | "error" | "success" | "warning" | "gray" | "darkGreen" | "darkBlue";
|
591
591
|
interface IBadgePropsBase extends AdditionalClassesProp {
|
592
592
|
/** Type of badge based on predefined styles. */
|
593
593
|
badgeType?: BADGETYPE;
|
@@ -680,7 +680,38 @@ export interface FormGenButtonGroupProps extends FormGenInputGroupProps {
|
|
680
680
|
};
|
681
681
|
tooltip?: string;
|
682
682
|
}
|
683
|
+
export interface FormGenButtonGroupMultiSelectProps extends FormGenInputGroupProps {
|
684
|
+
id?: string;
|
685
|
+
options: {
|
686
|
+
id: number;
|
687
|
+
value: string;
|
688
|
+
}[];
|
689
|
+
onSelect: (selectedOption: (selectedValue & {
|
690
|
+
value?: any[];
|
691
|
+
}) | any) => void;
|
692
|
+
label?: string;
|
693
|
+
error?: string;
|
694
|
+
isAdditionalErrorInput?: boolean;
|
695
|
+
additionalErrorClasses?: string;
|
696
|
+
selected?: Omit<selectedValue, 'answerPrevData'> & {
|
697
|
+
value?: any[];
|
698
|
+
answerPrevData?: {
|
699
|
+
lastEditedDate?: string;
|
700
|
+
answerLabel?: string[];
|
701
|
+
};
|
702
|
+
};
|
703
|
+
additionalClasses?: string;
|
704
|
+
onFileChange?: (file: File | null) => void;
|
705
|
+
secondaryComponentsVisible?: boolean;
|
706
|
+
viewMode?: boolean;
|
707
|
+
previousData?: {
|
708
|
+
answerLabel: string;
|
709
|
+
lastEditedDate?: string;
|
710
|
+
};
|
711
|
+
tooltip?: string;
|
712
|
+
}
|
683
713
|
export interface selectedValue {
|
714
|
+
id?: number;
|
684
715
|
value?: any;
|
685
716
|
additionalValues?: any;
|
686
717
|
valueRef?: any;
|
@@ -770,7 +801,7 @@ export interface SideBarListProps {
|
|
770
801
|
}
|
771
802
|
export interface PatientConsentProps {
|
772
803
|
consentDate?: string | Date | null;
|
773
|
-
consentStatus:
|
804
|
+
consentStatus: "NO CONSENT" | "CONSENT GIVEN";
|
774
805
|
consentBy?: string;
|
775
806
|
}
|
776
807
|
export interface UrgentDataProps {
|
@@ -793,7 +824,7 @@ export interface ListMasterDataProps {
|
|
793
824
|
limit?: number;
|
794
825
|
}
|
795
826
|
export interface challengesListProps {
|
796
|
-
urgency?:
|
827
|
+
urgency?: "Normal" | "Urgent";
|
797
828
|
challengeName?: string;
|
798
829
|
}
|
799
830
|
export interface TimelineEventProps {
|
@@ -921,7 +952,7 @@ export interface SignatureProps {
|
|
921
952
|
selected?: selectedValue;
|
922
953
|
onSelect: (signature: string) => void;
|
923
954
|
label?: string;
|
924
|
-
labelType?:
|
955
|
+
labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
|
925
956
|
}
|
926
957
|
export interface SolutionItem {
|
927
958
|
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;
|
@@ -439,7 +439,7 @@ declare enum ClickedAction {
|
|
439
439
|
ADDUNREGISTERED = "ADDUNREGISTERED",
|
440
440
|
REMOVE = "REMOVE"
|
441
441
|
}
|
442
|
-
type LableTypes =
|
442
|
+
type LableTypes = "default" | "black" | "smallSelect" | "blackSmall" | "formLabel" | "formLabelMedeum";
|
443
443
|
interface InputObject {
|
444
444
|
id: number;
|
445
445
|
label?: string;
|
@@ -529,7 +529,7 @@ declare enum BADGETYPE {
|
|
529
529
|
BUTTON = "button",
|
530
530
|
BORDEREDBLUE = "bordered-blue"
|
531
531
|
}
|
532
|
-
type BadgeColorVariant =
|
532
|
+
type BadgeColorVariant = "default" | "dark" | "red" | "green" | "yellow" | "indigo" | "purple" | "pink" | "error" | "success" | "warning" | "gray" | "darkGreen" | "darkBlue";
|
533
533
|
interface IBadgePropsBase extends AdditionalClassesProp$1 {
|
534
534
|
/** Type of badge based on predefined styles. */
|
535
535
|
badgeType?: BADGETYPE;
|
@@ -589,7 +589,38 @@ interface FormGenButtonGroupProps extends FormGenInputGroupProps {
|
|
589
589
|
};
|
590
590
|
tooltip?: string;
|
591
591
|
}
|
592
|
+
interface FormGenButtonGroupMultiSelectProps extends FormGenInputGroupProps {
|
593
|
+
id?: string;
|
594
|
+
options: {
|
595
|
+
id: number;
|
596
|
+
value: string;
|
597
|
+
}[];
|
598
|
+
onSelect: (selectedOption: (selectedValue & {
|
599
|
+
value?: any[];
|
600
|
+
}) | any) => void;
|
601
|
+
label?: string;
|
602
|
+
error?: string;
|
603
|
+
isAdditionalErrorInput?: boolean;
|
604
|
+
additionalErrorClasses?: string;
|
605
|
+
selected?: Omit<selectedValue, 'answerPrevData'> & {
|
606
|
+
value?: any[];
|
607
|
+
answerPrevData?: {
|
608
|
+
lastEditedDate?: string;
|
609
|
+
answerLabel?: string[];
|
610
|
+
};
|
611
|
+
};
|
612
|
+
additionalClasses?: string;
|
613
|
+
onFileChange?: (file: File | null) => void;
|
614
|
+
secondaryComponentsVisible?: boolean;
|
615
|
+
viewMode?: boolean;
|
616
|
+
previousData?: {
|
617
|
+
answerLabel: string;
|
618
|
+
lastEditedDate?: string;
|
619
|
+
};
|
620
|
+
tooltip?: string;
|
621
|
+
}
|
592
622
|
interface selectedValue {
|
623
|
+
id?: number;
|
593
624
|
value?: any;
|
594
625
|
additionalValues?: any;
|
595
626
|
valueRef?: any;
|
@@ -661,7 +692,7 @@ interface SideBarListProps {
|
|
661
692
|
}
|
662
693
|
interface PatientConsentProps {
|
663
694
|
consentDate?: string | Date | null;
|
664
|
-
consentStatus:
|
695
|
+
consentStatus: "NO CONSENT" | "CONSENT GIVEN";
|
665
696
|
consentBy?: string;
|
666
697
|
}
|
667
698
|
interface UrgentDataProps {
|
@@ -684,7 +715,7 @@ interface ListMasterDataProps {
|
|
684
715
|
limit?: number;
|
685
716
|
}
|
686
717
|
interface challengesListProps {
|
687
|
-
urgency?:
|
718
|
+
urgency?: "Normal" | "Urgent";
|
688
719
|
challengeName?: string;
|
689
720
|
}
|
690
721
|
interface TimelineEventProps {
|
@@ -808,7 +839,7 @@ interface SignatureProps {
|
|
808
839
|
selected?: selectedValue;
|
809
840
|
onSelect: (signature: string) => void;
|
810
841
|
label?: string;
|
811
|
-
labelType?:
|
842
|
+
labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
|
812
843
|
}
|
813
844
|
interface SolutionItem {
|
814
845
|
solution: ISolutionvalues;
|
@@ -1630,8 +1661,12 @@ declare const ButtonGroupWithUpload: React__default.FC<ButtonGroupWithUploadProp
|
|
1630
1661
|
|
1631
1662
|
declare const ButtonGroupFormGen: React__default.FC<FormGenButtonGroupProps>;
|
1632
1663
|
|
1664
|
+
declare const ButtonGroupWithMultiSelectFormGen: React__default.FC<FormGenButtonGroupMultiSelectProps>;
|
1665
|
+
|
1633
1666
|
declare const ButtonGroupWithInputsFormGen: React__default.FC<FormGenButtonGroupProps>;
|
1634
1667
|
|
1668
|
+
declare function ButtonGroupMultiSelectWithInputsFormGen({ id, options, onSelect, label, isAdditionalErrorInput, error, additionalErrorClasses, selected, inputObjects, orderBy, additionalClasses, secondaryComponentsVisible, viewMode, previousData, tooltip, }: FormGenButtonGroupMultiSelectProps): React__default.JSX.Element;
|
1669
|
+
|
1635
1670
|
declare const DynamicDualInputTextGroupFormGen: React__default.FC<DyanamicDualInputProps>;
|
1636
1671
|
|
1637
1672
|
declare const FilterButtonGroup: React__default.FC<ButtonGroupProps>;
|
@@ -2075,5 +2110,5 @@ declare const themeConfigs: {
|
|
2075
2110
|
plugins: any[];
|
2076
2111
|
};
|
2077
2112
|
|
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 };
|
2113
|
+
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
2114
|
export type { AccountPopoverMenuItem, BadgeColorVariant, BtnOptionDropdown, DropdownSearchProps, ISolutionvalues, InputType, ListMasterDataProps, LogoProps, MessageProps, NoteChildrenProps, NoteHistoryProps, NoteItemProps, NoteProps, OptionProps, TimelineEventProps, UrgentDataProps, VariantTypes };
|