dfh-ui-library 1.13.47 → 1.13.48
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/NotesEditor/index.d.ts +2 -1
- package/dist/cjs/types/components/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/NotesEditor/index.d.ts +2 -1
- package/dist/esm/types/components/index.d.ts +1 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
@@ -1 +1,2 @@
|
|
1
|
-
export { default } from './
|
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
@@ -1515,6 +1515,8 @@ declare const Timeline: React__default.FC<TimelineProps>;
|
|
1515
1515
|
|
1516
1516
|
declare const HistoryDetails: React__default.FC<NoteHistoryProps>;
|
1517
1517
|
|
1518
|
+
declare const NoteEditor: React__default.FC<NoteComponentProps>;
|
1519
|
+
|
1518
1520
|
declare const NoteEditorV2: React__default.FC<NoteComponentProps>;
|
1519
1521
|
|
1520
1522
|
declare const VersionDateDropdown: React__default.FC<VersionDropDownProps>;
|
@@ -1924,5 +1926,5 @@ declare const themeConfigs: {
|
|
1924
1926
|
plugins: any[];
|
1925
1927
|
};
|
1926
1928
|
|
1927
|
-
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,
|
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 };
|
1928
1930
|
export type { AccountPopoverMenuItem, BadgeColorVariant, BtnOptionDropdown, DropdownSearchProps, ISolutionvalues, InputType, ListMasterDataProps, LogoProps, MessageProps, NoteChildrenProps, NoteHistoryProps, NoteItemProps, NoteProps, OptionProps, TimelineEventProps, UrgentDataProps, VariantTypes };
|