@elliemae/ds-modal 2.2.0-next.6 → 2.2.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-modal",
3
- "version": "2.2.0-next.6",
3
+ "version": "2.2.1",
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.2.0-next.6",
100
- "@elliemae/ds-classnames": "2.2.0-next.6",
101
- "@elliemae/ds-form": "2.2.0-next.6",
102
- "@elliemae/ds-icon": "2.2.0-next.6",
103
- "@elliemae/ds-icons": "2.2.0-next.6",
104
- "@elliemae/ds-shared": "2.2.0-next.6",
105
- "@elliemae/ds-system": "2.2.0-next.6",
99
+ "@elliemae/ds-button": "2.2.1",
100
+ "@elliemae/ds-classnames": "2.2.1",
101
+ "@elliemae/ds-form": "2.2.1",
102
+ "@elliemae/ds-icon": "2.2.1",
103
+ "@elliemae/ds-icons": "2.2.1",
104
+ "@elliemae/ds-shared": "2.2.1",
105
+ "@elliemae/ds-system": "2.2.1",
106
106
  "prop-types": "~15.7.2",
107
107
  "react-desc": "~4.1.3",
108
108
  "react-modal": "~3.12.1"
@@ -223,36 +223,7 @@ declare const DSModal: {
223
223
  };
224
224
  };
225
225
  declare const DSModalWithSchema: {
226
- (props?: {
227
- containerProps?: {} | undefined;
228
- className?: string | undefined;
229
- style?: {} | undefined;
230
- size?: string | undefined;
231
- modalType?: string | undefined;
232
- modalSubType?: null | undefined;
233
- modalTitle?: string | undefined;
234
- dataTestId?: string | undefined;
235
- centered?: boolean | undefined;
236
- showRejectButton?: boolean | undefined;
237
- showClose?: boolean | undefined;
238
- searchProps?: {} | undefined;
239
- actionsRef?: (() => null) | undefined;
240
- additionalFooterCssClass: any;
241
- overridePropsConfirmButton?: {} | undefined;
242
- overridePropsRejectButton?: {} | undefined;
243
- children: any;
244
- isOpen?: boolean | undefined;
245
- onClose?: (() => null) | undefined;
246
- onAfterOpen?: (() => null) | undefined;
247
- onConfirm?: (() => null) | undefined;
248
- onReject?: (() => null) | undefined;
249
- rejectLabel?: string | undefined;
250
- confirmLabel?: string | undefined;
251
- shouldCloseOnOverlayClick?: boolean | undefined;
252
- appElement?: string | undefined;
253
- zIndex?: number | undefined;
254
- removePadding?: boolean | undefined;
255
- } | undefined): JSX.Element;
226
+ (props?: unknown): JSX.Element;
256
227
  propTypes: unknown;
257
228
  toTypescript: () => import("react-desc").TypescriptSchema;
258
229
  };