@elliemae/ds-modal 2.4.18 → 2.4.21
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/package.json +8 -8
- package/types/DSModal.d.ts +0 -1
- package/types/v1/DSModal.d.ts +0 -1
- package/types/v1/ModalFeedBack/ModalFeedBack.d.ts +0 -1
- package/types/v2/DSModal.d.ts +0 -1
- package/types/v2/components/DecisionHeader.d.ts +0 -1
- package/types/v2/components/FeedbackIcon.d.ts +0 -1
- package/types/v2/components/Footer.d.ts +0 -1
- package/types/v2/components/FormHeader.d.ts +0 -1
- package/types/v2/components/ModalContent.d.ts +0 -1
- package/types/v2/components/SelectionHeader.d.ts +0 -1
- package/types/v2/components/Title.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-modal",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.21",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Modal",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -96,13 +96,13 @@
|
|
|
96
96
|
"build": "node ../../scripts/build/build.js"
|
|
97
97
|
},
|
|
98
98
|
"dependencies": {
|
|
99
|
-
"@elliemae/ds-button": "2.4.
|
|
100
|
-
"@elliemae/ds-classnames": "2.4.
|
|
101
|
-
"@elliemae/ds-form": "2.4.
|
|
102
|
-
"@elliemae/ds-icon": "2.4.
|
|
103
|
-
"@elliemae/ds-icons": "2.4.
|
|
104
|
-
"@elliemae/ds-shared": "2.4.
|
|
105
|
-
"@elliemae/ds-system": "2.4.
|
|
99
|
+
"@elliemae/ds-button": "2.4.21",
|
|
100
|
+
"@elliemae/ds-classnames": "2.4.21",
|
|
101
|
+
"@elliemae/ds-form": "2.4.21",
|
|
102
|
+
"@elliemae/ds-icon": "2.4.21",
|
|
103
|
+
"@elliemae/ds-icons": "2.4.21",
|
|
104
|
+
"@elliemae/ds-shared": "2.4.21",
|
|
105
|
+
"@elliemae/ds-system": "2.4.21",
|
|
106
106
|
"prop-types": "~15.7.2",
|
|
107
107
|
"react-desc": "~4.1.3",
|
|
108
108
|
"react-modal": "~3.12.1"
|
package/types/DSModal.d.ts
CHANGED
package/types/v1/DSModal.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import PropTypes from 'prop-types';
|
|
3
2
|
declare const DSModal: {
|
|
4
3
|
({ containerProps, className, dataTestId, additionalFooterCssClass, style, iconCloseSize, modalType, showHeader, showFooter, children, centered, confirmLabel, modalTitle, size, isOpen, onClose, onAfterOpen, onConfirm, onReject, rejectLabel, shouldCloseOnOverlayClick, hasError, hasWarning, hasSuccess, hasInfo, hasHelp, actionsRef, appElement, overridePropsConfirmButton, overridePropsRejectButton, zIndex, }: {
|
package/types/v2/DSModal.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
2
|
import { DSModalContent } from './components/ModalContent';
|
|
4
3
|
declare const DSModal: {
|
|
5
4
|
({ containerProps, className, style, size, modalType, modalSubType, modalTitle, dataTestId, centered, showRejectButton, showClose, searchProps, actionsRef, additionalFooterCssClass, overridePropsConfirmButton, overridePropsRejectButton, children, isOpen, onClose, onAfterOpen, onConfirm, onReject, rejectLabel, confirmLabel, shouldCloseOnOverlayClick, appElement, zIndex, removePadding, }: {
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const Footer: ({ additionalFooterCssClass, actionsRef, rejectLabel, onReject, overridePropsRejectButton, confirmLabel, onConfirm, overridePropsConfirmButton, showRejectButton, }: {
|
|
3
2
|
additionalFooterCssClass: any;
|
|
4
3
|
actionsRef: any;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const DSModalContent: ({ containerProps, modalType, modalSubType, modalTitle, showRejectButton, showClose, searchProps, actionsRef, additionalFooterCssClass, overridePropsConfirmButton, overridePropsRejectButton, children, onClose, onConfirm, onReject, rejectLabel, confirmLabel, removePadding, }: {
|
|
3
2
|
containerProps?: {} | undefined;
|
|
4
3
|
modalType?: string | undefined;
|