catchup-library-web 2.4.4 → 2.4.6

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.
package/dist/index.d.mts CHANGED
@@ -104,6 +104,7 @@ declare const BaseLoading: ({ height, width, size, primaryColor, secondaryColor,
104
104
  declare const BaseLoadingWithText: (props: any) => react_jsx_runtime.JSX.Element;
105
105
 
106
106
  interface IModalProps {
107
+ title: string;
107
108
  isOpen: boolean;
108
109
  size: string;
109
110
  onAfterOpen: () => void;
@@ -112,7 +113,7 @@ interface IModalProps {
112
113
  children: any;
113
114
  }
114
115
 
115
- declare const BaseModal: ({ isOpen, size, onAfterOpen, onRequestClose, customSize, children, }: IModalProps) => react_jsx_runtime.JSX.Element;
116
+ declare const BaseModal: ({ title, isOpen, size, onAfterOpen, onRequestClose, customSize, children, }: IModalProps) => react_jsx_runtime.JSX.Element;
116
117
 
117
118
  interface IBasePDFProps {
118
119
  file: string;
@@ -434,9 +435,9 @@ declare const InputWithSpecialExpression: ({ value, showSpecialOnly, }: IInputWi
434
435
 
435
436
  interface IBaseTitleProps {
436
437
  title: string;
437
- totalItemCount: number;
438
- itemName: string;
439
- description: string;
438
+ totalItemCount?: number;
439
+ itemName?: string;
440
+ description?: string;
440
441
  }
441
442
  interface ISubTitleProps {
442
443
  title: string;
package/dist/index.d.ts CHANGED
@@ -104,6 +104,7 @@ declare const BaseLoading: ({ height, width, size, primaryColor, secondaryColor,
104
104
  declare const BaseLoadingWithText: (props: any) => react_jsx_runtime.JSX.Element;
105
105
 
106
106
  interface IModalProps {
107
+ title: string;
107
108
  isOpen: boolean;
108
109
  size: string;
109
110
  onAfterOpen: () => void;
@@ -112,7 +113,7 @@ interface IModalProps {
112
113
  children: any;
113
114
  }
114
115
 
115
- declare const BaseModal: ({ isOpen, size, onAfterOpen, onRequestClose, customSize, children, }: IModalProps) => react_jsx_runtime.JSX.Element;
116
+ declare const BaseModal: ({ title, isOpen, size, onAfterOpen, onRequestClose, customSize, children, }: IModalProps) => react_jsx_runtime.JSX.Element;
116
117
 
117
118
  interface IBasePDFProps {
118
119
  file: string;
@@ -434,9 +435,9 @@ declare const InputWithSpecialExpression: ({ value, showSpecialOnly, }: IInputWi
434
435
 
435
436
  interface IBaseTitleProps {
436
437
  title: string;
437
- totalItemCount: number;
438
- itemName: string;
439
- description: string;
438
+ totalItemCount?: number;
439
+ itemName?: string;
440
+ description?: string;
440
441
  }
441
442
  interface ISubTitleProps {
442
443
  title: string;