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 +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +559 -549
- package/dist/index.mjs +559 -549
- package/package.json +1 -1
- package/src/components/groups/InputGroup.tsx +1 -3
- package/src/components/modals/BaseModal.tsx +23 -11
- package/src/properties/ModalProperties.ts +1 -0
- package/src/properties/TitleProperties.ts +3 -3
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
|
|
438
|
-
itemName
|
|
439
|
-
description
|
|
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
|
|
438
|
-
itemName
|
|
439
|
-
description
|
|
438
|
+
totalItemCount?: number;
|
|
439
|
+
itemName?: string;
|
|
440
|
+
description?: string;
|
|
440
441
|
}
|
|
441
442
|
interface ISubTitleProps {
|
|
442
443
|
title: string;
|