@elliemae/ds-codeeditor 2.2.0-beta.0 → 2.2.0-next.4

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-codeeditor",
3
- "version": "2.2.0-beta.0",
3
+ "version": "2.2.0-next.4",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Code Editor",
6
6
  "module": "./esm/index.js",
@@ -44,11 +44,11 @@
44
44
  "build": "node ../../scripts/build/build.js"
45
45
  },
46
46
  "dependencies": {
47
- "@elliemae/ds-button": "2.2.0-beta.0",
48
- "@elliemae/ds-classnames": "2.2.0-beta.0",
49
- "@elliemae/ds-form": "2.2.0-beta.0",
50
- "@elliemae/ds-icons": "2.2.0-beta.0",
51
- "@elliemae/ds-modal": "2.2.0-beta.0",
47
+ "@elliemae/ds-button": "2.2.0-next.4",
48
+ "@elliemae/ds-classnames": "2.2.0-next.4",
49
+ "@elliemae/ds-form": "2.2.0-next.4",
50
+ "@elliemae/ds-icons": "2.2.0-next.4",
51
+ "@elliemae/ds-modal": "2.2.0-next.4",
52
52
  "brace": "~0.11.1",
53
53
  "react-ace": "~6.6.0",
54
54
  "react-desc": "~4.1.3"
@@ -99,7 +99,27 @@ declare const DSCodeEditor: {
99
99
  };
100
100
  };
101
101
  declare const CodeEditorWithSchema: {
102
- (props?: unknown): JSX.Element;
102
+ (props?: {
103
+ containerProps?: {} | undefined;
104
+ value?: string | undefined;
105
+ onSave?: (() => null) | undefined;
106
+ onClose?: (() => null) | undefined;
107
+ onReject?: (() => null) | undefined;
108
+ onChange?: (() => null) | undefined;
109
+ isOpen?: boolean | undefined;
110
+ fileName?: string | undefined;
111
+ confirmLabel?: string | undefined;
112
+ maxLines?: number | undefined;
113
+ minLines?: number | undefined;
114
+ modalTitle?: string | undefined;
115
+ modalType?: string | undefined;
116
+ rejectLabel?: string | undefined;
117
+ size?: string | undefined;
118
+ style?: {} | undefined;
119
+ useModal?: boolean | undefined;
120
+ showHeader?: boolean | undefined;
121
+ showSyntaxChecks?: boolean | undefined;
122
+ } | undefined): JSX.Element;
103
123
  propTypes: unknown;
104
124
  toTypescript: () => import("react-desc").TypescriptSchema;
105
125
  };