dfh-ui-library 1.11.21 → 1.11.23

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.
@@ -720,6 +720,12 @@ export interface NoteComponentProps {
720
720
  enableCheckbox?: boolean;
721
721
  enableEdit?: boolean;
722
722
  setEnableEdit?: (value: boolean) => void;
723
+ toggleEvents?: {
724
+ setShowNote?: (value: boolean) => void;
725
+ lastModified?: string;
726
+ viewNoteHistory?: (value: boolean) => void;
727
+ toggleEdit?: (value: boolean) => void;
728
+ };
723
729
  }
724
730
  export interface TabButtonProps {
725
731
  onClickTab?: (value: string) => void;
package/dist/index.d.ts CHANGED
@@ -593,6 +593,12 @@ interface NoteComponentProps {
593
593
  enableCheckbox?: boolean;
594
594
  enableEdit?: boolean;
595
595
  setEnableEdit?: (value: boolean) => void;
596
+ toggleEvents?: {
597
+ setShowNote?: (value: boolean) => void;
598
+ lastModified?: string;
599
+ viewNoteHistory?: (value: boolean) => void;
600
+ toggleEdit?: (value: boolean) => void;
601
+ };
596
602
  }
597
603
  interface TabButtonProps {
598
604
  onClickTab?: (value: string) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.11.21",
3
+ "version": "1.11.23",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",