@elliemae/ds-codeeditor 2.2.0-next.3 → 2.2.0-rc.0

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-next.3",
3
+ "version": "2.2.0-rc.0",
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-next.3",
48
- "@elliemae/ds-classnames": "2.2.0-next.3",
49
- "@elliemae/ds-form": "2.2.0-next.3",
50
- "@elliemae/ds-icons": "2.2.0-next.3",
51
- "@elliemae/ds-modal": "2.2.0-next.3",
47
+ "@elliemae/ds-button": "2.2.0-rc.0",
48
+ "@elliemae/ds-classnames": "2.2.0-rc.0",
49
+ "@elliemae/ds-form": "2.2.0-rc.0",
50
+ "@elliemae/ds-icons": "2.2.0-rc.0",
51
+ "@elliemae/ds-modal": "2.2.0-rc.0",
52
52
  "brace": "~0.11.1",
53
53
  "react-ace": "~6.6.0",
54
54
  "react-desc": "~4.1.3"
@@ -99,27 +99,7 @@ declare const DSCodeEditor: {
99
99
  };
100
100
  };
101
101
  declare const CodeEditorWithSchema: {
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;
102
+ (props?: unknown): JSX.Element;
123
103
  propTypes: unknown;
124
104
  toTypescript: () => import("react-desc").TypescriptSchema;
125
105
  };