dfh-ui-library 1.13.41 → 1.13.43
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/Datepicker/DatePickerFormGenV2.d.ts +6 -1
- package/dist/cjs/types/components/InputDatepicker/InputDatePickerV2.d.ts +8 -0
- package/dist/cjs/types/components/InputDatepicker/index.d.ts +2 -1
- package/dist/cjs/types/components/index.d.ts +1 -1
- package/dist/cjs/types/shared/utilities/date.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Datepicker/DatePickerFormGenV2.d.ts +6 -1
- package/dist/esm/types/components/InputDatepicker/InputDatePickerV2.d.ts +8 -0
- package/dist/esm/types/components/InputDatepicker/index.d.ts +2 -1
- package/dist/esm/types/components/index.d.ts +1 -1
- package/dist/esm/types/shared/utilities/date.d.ts +1 -0
- package/dist/index.d.ts +6 -1
- package/package.json +1 -1
@@ -1,5 +1,10 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import '../../shared/customCss/react-datepicker.css';
|
3
3
|
import { CustomDatePickerProps } from '../../shared/models/components/common.model';
|
4
|
-
|
4
|
+
interface CustomDatePickerPropsV2 extends Omit<CustomDatePickerProps, 'selected'> {
|
5
|
+
selected?: {
|
6
|
+
value?: Date | string | null;
|
7
|
+
} | null;
|
8
|
+
}
|
9
|
+
declare const DatePickerFormGenV2: React.FC<CustomDatePickerPropsV2>;
|
5
10
|
export default DatePickerFormGenV2;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import '../../shared/customCss/react-datepicker.css';
|
3
|
+
import { CustomDatePickerProps } from '../../shared/models/components/common.model';
|
4
|
+
interface CustomDatePickerPropsV2 extends Omit<CustomDatePickerProps, 'selectedDate'> {
|
5
|
+
selectedDate?: Date | string | null;
|
6
|
+
}
|
7
|
+
declare const InputDatePickerV2: React.FC<CustomDatePickerPropsV2>;
|
8
|
+
export default InputDatePickerV2;
|
@@ -1 +1,2 @@
|
|
1
|
-
export { default } from "./InputDatePicker";
|
1
|
+
export { default as InputDatePicker } from "./InputDatePicker";
|
2
|
+
export { default as InputDatePickerV2 } from './InputDatePickerV2';
|
@@ -13,7 +13,7 @@ export { default as Message } from './Message';
|
|
13
13
|
export { default as Breadcrumb } from './Breadcrumb';
|
14
14
|
export { default as ImagePreview } from './ImagePreview';
|
15
15
|
export { default as DatePicker } from './Datepicker';
|
16
|
-
export
|
16
|
+
export * from './InputDatepicker';
|
17
17
|
export { Row } from './core';
|
18
18
|
export { PhoneNumberInput, PhoneNumberInput2, PhoneNumberInput3, } from './PhoneNumberInput';
|
19
19
|
export { Tooltip } from './Tooltip';
|
package/dist/index.d.ts
CHANGED
@@ -1398,6 +1398,11 @@ declare const CustomDatePicker: React__default.FC<CustomDatePickerProps>;
|
|
1398
1398
|
|
1399
1399
|
declare const InputDatePicker: React__default.FC<CustomDatePickerProps>;
|
1400
1400
|
|
1401
|
+
interface CustomDatePickerPropsV2 extends Omit<CustomDatePickerProps, 'selectedDate'> {
|
1402
|
+
selectedDate?: Date | string | null;
|
1403
|
+
}
|
1404
|
+
declare const InputDatePickerV2: React__default.FC<CustomDatePickerPropsV2>;
|
1405
|
+
|
1401
1406
|
interface RowProps {
|
1402
1407
|
children: React__default.ReactNode;
|
1403
1408
|
additionalClasses?: string;
|
@@ -1921,5 +1926,5 @@ declare const themeConfigs: {
|
|
1921
1926
|
plugins: any[];
|
1922
1927
|
};
|
1923
1928
|
|
1924
|
-
export { BADGETYPE, Badge, BorderType, Breadcrumb, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupMultiSelectV2, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithUpload, ButtonV2, 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, NoteEditorV2, 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 };
|
1929
|
+
export { BADGETYPE, Badge, BorderType, Breadcrumb, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupMultiSelectV2, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithUpload, ButtonV2, 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, 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, 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 };
|
1925
1930
|
export type { AccountPopoverMenuItem, BadgeColorVariant, BtnOptionDropdown, DropdownSearchProps, ISolutionvalues, InputType, ListMasterDataProps, LogoProps, MessageProps, NoteChildrenProps, NoteHistoryProps, NoteItemProps, NoteProps, OptionProps, TimelineEventProps, UrgentDataProps, VariantTypes };
|