@elliemae/ds-treeview 2.0.0-rc.8 → 2.0.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-treeview",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Tree View",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -319,12 +319,14 @@
|
|
|
319
319
|
"generateSubmodules": true
|
|
320
320
|
},
|
|
321
321
|
"dependencies": {
|
|
322
|
-
"@elliemae/ds-
|
|
323
|
-
"@elliemae/ds-
|
|
324
|
-
"@elliemae/ds-
|
|
325
|
-
"@elliemae/ds-
|
|
326
|
-
"@elliemae/ds-
|
|
327
|
-
"@elliemae/ds-
|
|
322
|
+
"@elliemae/ds-button": "2.0.1",
|
|
323
|
+
"@elliemae/ds-circular-progress-indicator": "2.0.1",
|
|
324
|
+
"@elliemae/ds-classnames": "2.0.1",
|
|
325
|
+
"@elliemae/ds-form": "2.0.1",
|
|
326
|
+
"@elliemae/ds-icons": "2.0.1",
|
|
327
|
+
"@elliemae/ds-shared": "2.0.1",
|
|
328
|
+
"@elliemae/ds-truncated-tooltip-text": "2.0.1",
|
|
329
|
+
"@elliemae/ds-utilities": "2.0.1",
|
|
328
330
|
"@elliemae/react-sortable-hoc": "^1.0.0",
|
|
329
331
|
"@john-osullivan/react-window-dynamic-fork": "1.9.0-alpha.1",
|
|
330
332
|
"prop-types": "~15.7.2",
|
|
@@ -332,14 +334,12 @@
|
|
|
332
334
|
"react-desc": "~4.1.3",
|
|
333
335
|
"react-highlight-words": "~0.17.0",
|
|
334
336
|
"react-virtual": "~2.3.2",
|
|
335
|
-
"react-virtualized-auto-sizer": "~1.0.6",
|
|
336
|
-
"react-window": "~1.8.6",
|
|
337
337
|
"resize-observer-polyfill": "~1.5.1",
|
|
338
|
-
"stylesheet-helpers": "~0.2.2",
|
|
339
338
|
"tree-model": "~1.0.7",
|
|
340
339
|
"uuid": "~8.3.2"
|
|
341
340
|
},
|
|
342
341
|
"devDependencies": {
|
|
342
|
+
"@testing-library/react": "~12.1.2",
|
|
343
343
|
"styled-components": "~5.3.3"
|
|
344
344
|
},
|
|
345
345
|
"peerDependencies": {
|
|
@@ -15,7 +15,7 @@ export declare function getTreeItemsFromRender({ data, plugins, ...props }: {
|
|
|
15
15
|
}, key?: string): {
|
|
16
16
|
container: HTMLElement;
|
|
17
17
|
baseElement: Element;
|
|
18
|
-
debug: (baseElement?: Element | DocumentFragment | (Element | DocumentFragment)[] | undefined, maxLength?: number | undefined, options?: import("pretty-format
|
|
18
|
+
debug: (baseElement?: Element | DocumentFragment | (Element | DocumentFragment)[] | undefined, maxLength?: number | undefined, options?: import("pretty-format").PrettyFormatOptions | undefined) => void;
|
|
19
19
|
rerender: (ui: React.ReactElement<any, string | React.JSXElementConstructor<any>>) => void;
|
|
20
20
|
unmount: () => void;
|
|
21
21
|
asFragment: () => DocumentFragment;
|