dfh-ui-library 1.12.154 → 1.12.156

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.
@@ -2,8 +2,10 @@ import React from "react";
2
2
  interface CheckboxProps {
3
3
  id?: string;
4
4
  checked?: boolean;
5
- onChange: (id?: string) => void;
5
+ onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
6
6
  addtionalClasses?: string;
7
+ noteId?: string;
8
+ noteIndex?: number;
7
9
  }
8
10
  declare const CheckBoxComponent: React.FC<CheckboxProps>;
9
11
  export default CheckBoxComponent;
@@ -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;
package/dist/index.d.ts CHANGED
@@ -1435,8 +1435,10 @@ declare const ButtonGroupMultiSelect: React__default.FC<ButtonGroupMultiProps>;
1435
1435
  interface CheckboxProps {
1436
1436
  id?: string;
1437
1437
  checked?: boolean;
1438
- onChange: (id?: string) => void;
1438
+ onChange: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
1439
1439
  addtionalClasses?: string;
1440
+ noteId?: string;
1441
+ noteIndex?: number;
1440
1442
  }
1441
1443
  declare const CheckBoxComponent: React__default.FC<CheckboxProps>;
1442
1444
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.154",
3
+ "version": "1.12.156",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",
@@ -1,7 +0,0 @@
1
- import React from "react";
2
- import { IInputProps } from "../../../shared/models/components/base.model";
3
- /**
4
- * Primary UI component for user interaction
5
- */
6
- declare const AutoResizeTextarea: React.FC<IInputProps>;
7
- export default AutoResizeTextarea;
@@ -1 +0,0 @@
1
- export { default as AutoResizeTextarea } from "./AutoResizeTextarea";
@@ -1,7 +0,0 @@
1
- import React from "react";
2
- import { IInputProps } from "../../../shared/models/components/base.model";
3
- /**
4
- * Primary UI component for user interaction
5
- */
6
- declare const AutoResizeTextarea: React.FC<IInputProps>;
7
- export default AutoResizeTextarea;
@@ -1 +0,0 @@
1
- export { default as AutoResizeTextarea } from "./AutoResizeTextarea";