dfh-ui-library 1.12.733 → 1.12.735

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,4 @@
1
+ import React from "react";
2
+ import { TimelineEventProps } from "../../shared/models/components/common.model";
3
+ declare const NoteEvent: React.FC<TimelineEventProps>;
4
+ export default NoteEvent;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import { NoteItemProps } from "../../shared/models/components/common.model";
3
+ interface NoteViewProps {
4
+ notes?: NoteItemProps[];
5
+ }
6
+ declare const NotesEventView: React.FC<NoteViewProps>;
7
+ export default NotesEventView;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { CustomDatePickerProps } from '../../shared/models/components/common.model';
3
+ declare const MonthPicker: React.FC<CustomDatePickerProps>;
4
+ export default MonthPicker;
@@ -0,0 +1 @@
1
+ export { default } from "./MonthPicker";
@@ -2,6 +2,7 @@ import React from "react";
2
2
  import { TooltipProps } from "../../shared/models/components/base.model";
3
3
  interface ExtendedTooltipProps extends TooltipProps {
4
4
  fromRightToLeft?: boolean;
5
+ selectTooltipContent?: boolean;
5
6
  }
6
7
  declare const TooltipWithChildren: React.FC<ExtendedTooltipProps>;
7
8
  export default TooltipWithChildren;
package/dist/index.d.ts CHANGED
@@ -1365,6 +1365,7 @@ declare const Tooltip: React__default.FC<TooltipProps>;
1365
1365
 
1366
1366
  interface ExtendedTooltipProps extends TooltipProps {
1367
1367
  fromRightToLeft?: boolean;
1368
+ selectTooltipContent?: boolean;
1368
1369
  }
1369
1370
  declare const TooltipWithChildren: React__default.FC<ExtendedTooltipProps>;
1370
1371
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.733",
3
+ "version": "1.12.735",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { IMultiSelectProps } from "../../../shared/models/components/common.model";
3
- declare const MultiSelect: React.FC<IMultiSelectProps>;
4
- export default MultiSelect;
@@ -1 +0,0 @@
1
- export { default } from "./MultiSelect";
@@ -1,4 +0,0 @@
1
- import React from "react";
2
- import { IMultiSelectProps } from "../../../shared/models/components/common.model";
3
- declare const MultiSelect: React.FC<IMultiSelectProps>;
4
- export default MultiSelect;
@@ -1 +0,0 @@
1
- export { default } from "./MultiSelect";