dfh-ui-library 1.12.534 → 1.12.536

Sign up to get free protection for your applications and to get access to all the features.
@@ -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";
@@ -833,7 +833,6 @@ export interface NoteComponentProps {
833
833
  additionalClassesTitlebar?: string;
834
834
  minHeight?: string;
835
835
  isChallengeNote?: boolean;
836
- isAutoSave?: boolean;
837
836
  }
838
837
  export interface TabButtonProps {
839
838
  onClickTab?: (value: string) => void;
package/dist/index.d.ts CHANGED
@@ -721,7 +721,6 @@ interface NoteComponentProps {
721
721
  additionalClassesTitlebar?: string;
722
722
  minHeight?: string;
723
723
  isChallengeNote?: boolean;
724
- isAutoSave?: boolean;
725
724
  }
726
725
  interface TabButtonProps {
727
726
  onClickTab?: (value: string) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.534",
3
+ "version": "1.12.536",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",