dfh-ui-library 1.13.25 → 1.13.27
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.css +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
@@ -245,7 +245,9 @@ export interface CustomDatePickerProps {
|
|
245
245
|
dateFormat?: string;
|
246
246
|
enableClear?: boolean;
|
247
247
|
maxDate?: Date;
|
248
|
+
minDate?: Date;
|
248
249
|
disabled?: boolean;
|
250
|
+
showMonthYearPicker?: boolean;
|
249
251
|
}
|
250
252
|
export interface PhoneNumberInputProps {
|
251
253
|
value: string;
|
package/dist/index.d.ts
CHANGED
@@ -222,7 +222,9 @@ interface CustomDatePickerProps {
|
|
222
222
|
dateFormat?: string;
|
223
223
|
enableClear?: boolean;
|
224
224
|
maxDate?: Date;
|
225
|
+
minDate?: Date;
|
225
226
|
disabled?: boolean;
|
227
|
+
showMonthYearPicker?: boolean;
|
226
228
|
}
|
227
229
|
interface PhoneNumberInputProps {
|
228
230
|
value: string;
|
@@ -1910,4 +1912,5 @@ declare const themeConfigs: {
|
|
1910
1912
|
plugins: any[];
|
1911
1913
|
};
|
1912
1914
|
|
1913
|
-
export {
|
1915
|
+
export { BADGETYPE, Badge, BorderType, Breadcrumb, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithUpload, Card, Checkbox as CheckBox, CheckBoxComponent, ClickedAction, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, HistoryDetails, Icon, IconInput, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, InputDatePicker, InputValidation, InputsGroup, Label, ListRow, LoadingSpinner, Logo, Message, Modal, MultiSelectFormGen, NavBar, NoteEditor, PanelCard, PhoneNumberInput, PhoneNumberInput2, PhoneNumberInput3, PreviousDataBadge, ProgressBar, RadioButton, RegularDropdown, Row, SearchDropdownWithButton, Select, SelectUserWithButton, SideBarListView, Signature, SortDropdown, Spinner, SsnInput, Stepper, Tab, TabButton, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Timeline, Todos, Tooltip, TooltipWithChildren, Typho, Typhography, TyphographyFormGen, UrgentChallenges, useSchemaProcessor as UseSchemaProcessor, VersionDateDropdown, themeConfigs, usePagination, useSorting };
|
1916
|
+
export type { AccountPopoverMenuItem, BadgeColorVariant, BtnOptionDropdown, DropdownSearchProps, ISolutionvalues, InputType, ListMasterDataProps, LogoProps, MessageProps, NoteChildrenProps, NoteHistoryProps, NoteItemProps, NoteProps, OptionProps, TimelineEventProps, UrgentDataProps, VariantTypes };
|