dfh-ui-library 1.12.407 → 1.12.409

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;
@@ -803,6 +803,7 @@ export interface NoteComponentProps {
803
803
  enableAddCheckbox?: boolean;
804
804
  additionalClassesNote?: string;
805
805
  additionalClassesButtons?: string;
806
+ minHeight?: string;
806
807
  }
807
808
  export interface TabButtonProps {
808
809
  onClickTab?: (value: string) => void;
package/dist/index.d.ts CHANGED
@@ -689,6 +689,7 @@ interface NoteComponentProps {
689
689
  enableAddCheckbox?: boolean;
690
690
  additionalClassesNote?: string;
691
691
  additionalClassesButtons?: string;
692
+ minHeight?: string;
692
693
  }
693
694
  interface TabButtonProps {
694
695
  onClickTab?: (value: string) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.407",
3
+ "version": "1.12.409",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",