dfh-ui-library 1.3.37 → 1.3.38
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/index.d.ts
CHANGED
|
@@ -667,6 +667,14 @@ interface ITabPanelProps extends AdditionalClassesProp {
|
|
|
667
667
|
/** Identifier for the tab panel. */
|
|
668
668
|
index: string;
|
|
669
669
|
}
|
|
670
|
+
interface IPanelCardProps extends AdditionalClassesProp {
|
|
671
|
+
/** Header title displayed on header area of the card. */
|
|
672
|
+
headerTitle: string;
|
|
673
|
+
/** Controllers displayed on header area of the card. */
|
|
674
|
+
controllers?: React.ReactNode;
|
|
675
|
+
/** Content displayed within the panel. */
|
|
676
|
+
content?: React.ReactNode;
|
|
677
|
+
}
|
|
670
678
|
|
|
671
679
|
declare const Button: ({ type, isDisabled, buttonLabel, iconType, iconColor, iconAlignment, isIconEnabled, variants, additionalClasses, iconClass, enableBagage, bagageProps, onClick, }: IButtonProps) => React__default.JSX.Element;
|
|
672
680
|
|
|
@@ -821,6 +829,8 @@ declare const TabList: React__default.FC<ITabListProps>;
|
|
|
821
829
|
|
|
822
830
|
declare const TabPanel: React__default.FC<ITabPanelProps>;
|
|
823
831
|
|
|
832
|
+
declare const PanelCard: React__default.FC<IPanelCardProps>;
|
|
833
|
+
|
|
824
834
|
interface UseSchemaProcessorProps {
|
|
825
835
|
schema: ISchema[];
|
|
826
836
|
externalSetComponents: (data: IComponent[]) => void;
|
|
@@ -855,4 +865,4 @@ declare function useSorting(initialField?: string, initialOrder?: string): {
|
|
|
855
865
|
field: string;
|
|
856
866
|
};
|
|
857
867
|
|
|
858
|
-
export { Breadcrumb, type BtnOptionDropdown, Button, ButtonGroup, Card, Checkbox as CheckBox, ClickedAction, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, type DropdownSearchProps, Heading, Icon, IconInput, ImageInput, ImagePreview, Input, type InputType, InputValidation, Label, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, Modal, NavBar, type OptionProps, PhoneNumberInput, RadioButton, Row, SearchDropdownWithButton, Select, Tab, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Tooltip, Typhography, useSchemaProcessor as UseSchemaProcessor, type VariantTypes, usePagination, useSorting };
|
|
868
|
+
export { Breadcrumb, type BtnOptionDropdown, Button, ButtonGroup, Card, Checkbox as CheckBox, ClickedAction, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, type DropdownSearchProps, Heading, Icon, IconInput, ImageInput, ImagePreview, Input, type InputType, InputValidation, Label, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, Modal, NavBar, type OptionProps, PanelCard, PhoneNumberInput, RadioButton, Row, SearchDropdownWithButton, Select, Tab, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Tooltip, Typhography, useSchemaProcessor as UseSchemaProcessor, type VariantTypes, usePagination, useSorting };
|