dfh-ui-library 1.13.35 → 1.13.37

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.
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import '../../shared/customCss/react-datepicker.css';
3
+ import { CustomDatePickerProps } from '../../shared/models/components/common.model';
4
+ declare const DatePickerFormGenV2: React.FC<CustomDatePickerProps>;
5
+ export default DatePickerFormGenV2;
@@ -1,5 +1,5 @@
1
- import React from "react";
2
- import { IInputProps } from "../../../shared/models/components/base.model";
1
+ import React from 'react';
2
+ import { IInputProps } from '../../../shared/models/components/base.model';
3
3
  /**
4
4
  * Primary UI component for user interaction
5
5
  */
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { NoteComponentProps } from '../../shared/models/components/common.model';
3
+ declare const NoteEditorV2: React.FC<NoteComponentProps>;
4
+ export default NoteEditorV2;
@@ -1 +1,2 @@
1
- export { default } from "./NoteEditor";
1
+ export { default } from './NoteEditor';
2
+ export { default as NoteEditorV2 } from './NoteEditorV2';
@@ -43,7 +43,7 @@ export { IndeterminateCheckbox } from './Gird';
43
43
  export { SelectUserWithButton } from './SelectDropdownUser';
44
44
  export { default as Timeline } from './Timeline';
45
45
  export { default as HistoryDetails } from './History';
46
- export { default as NoteEditor } from './NotesEditor';
46
+ export { default as NoteEditor, NoteEditorV2 } from './NotesEditor';
47
47
  export { default as VersionDateDropdown } from './VersionDateDropdown';
48
48
  export { default as SortDropdown } from './SortDropdown';
49
49
  export { default as PreviousDataBadge } from './PreviousDataBadge';
package/dist/index.d.ts CHANGED
@@ -1512,6 +1512,8 @@ declare const HistoryDetails: React__default.FC<NoteHistoryProps>;
1512
1512
 
1513
1513
  declare const NoteEditor: React__default.FC<NoteComponentProps>;
1514
1514
 
1515
+ declare const NoteEditorV2: React__default.FC<NoteComponentProps>;
1516
+
1515
1517
  declare const VersionDateDropdown: React__default.FC<VersionDropDownProps>;
1516
1518
 
1517
1519
  declare const SortDropdown: React__default.FC<VersionDropDownProps>;
@@ -1919,4 +1921,5 @@ declare const themeConfigs: {
1919
1921
  plugins: any[];
1920
1922
  };
1921
1923
 
1922
- export { type AccountPopoverMenuItem, BADGETYPE, Badge, type BadgeColorVariant, BorderType, Breadcrumb, type BtnOptionDropdown, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupMultiSelectV2, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithUpload, ButtonV2, Card, Checkbox as CheckBox, CheckBoxComponent, ClickedAction, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, type DropdownSearchProps, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, HistoryDetails, type ISolutionvalues, Icon, IconInput, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, InputDatePicker, type InputType, InputValidation, InputsGroup, Label, type ListMasterDataProps, ListRow, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, Modal, MultiSelectFormGen, NavBar, type NoteChildrenProps, NoteEditor, type NoteHistoryProps, type NoteItemProps, type NoteProps, type OptionProps, 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, type TimelineEventProps, Todos, Tooltip, TooltipWithChildren, Typho, Typhography, TyphographyFormGen, UrgentChallenges, type UrgentDataProps, useSchemaProcessor as UseSchemaProcessor, type VariantTypes, VersionDateDropdown, themeConfigs, usePagination, useSorting };
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 };
1925
+ export type { AccountPopoverMenuItem, BadgeColorVariant, BtnOptionDropdown, DropdownSearchProps, ISolutionvalues, InputType, ListMasterDataProps, LogoProps, MessageProps, NoteChildrenProps, NoteHistoryProps, NoteItemProps, NoteProps, OptionProps, TimelineEventProps, UrgentDataProps, VariantTypes };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.35",
3
+ "version": "1.13.37",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",