dfh-ui-library 1.12.156 → 1.12.158

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,10 +2,8 @@ import React from "react";
2
2
  interface CheckboxProps {
3
3
  id?: string;
4
4
  checked?: boolean;
5
- onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
5
+ onChange: (id?: string) => void;
6
6
  addtionalClasses?: string;
7
- noteId?: string;
8
- noteIndex?: number;
9
7
  }
10
8
  declare const CheckBoxComponent: React.FC<CheckboxProps>;
11
9
  export default CheckBoxComponent;
@@ -0,0 +1,7 @@
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;
@@ -0,0 +1 @@
1
+ export { default as AutoResizeTextarea } from "./AutoResizeTextarea";
package/dist/index.d.ts CHANGED
@@ -1435,10 +1435,8 @@ declare const ButtonGroupMultiSelect: React__default.FC<ButtonGroupMultiProps>;
1435
1435
  interface CheckboxProps {
1436
1436
  id?: string;
1437
1437
  checked?: boolean;
1438
- onChange: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
1438
+ onChange: (id?: string) => void;
1439
1439
  addtionalClasses?: string;
1440
- noteId?: string;
1441
- noteIndex?: number;
1442
1440
  }
1443
1441
  declare const CheckBoxComponent: React__default.FC<CheckboxProps>;
1444
1442
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.156",
3
+ "version": "1.12.158",
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 { TimelineEventProps } from "../../shared/models/components/common.model";
3
- declare const NoteEvent: React.FC<TimelineEventProps>;
4
- export default NoteEvent;
@@ -1,7 +0,0 @@
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;
@@ -1,4 +0,0 @@
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;
@@ -1,7 +0,0 @@
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;