react-asc 18.7.2 → 18.8.2

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": "react-asc",
3
- "version": "18.7.2",
3
+ "version": "18.8.2",
4
4
  "description": "handcrafted react components",
5
5
  "main": "index.js",
6
6
  "module": "index.es.js",
package/react-asc.scss CHANGED
@@ -9,21 +9,6 @@
9
9
  }
10
10
  }
11
11
 
12
- .treeview {
13
- list-style-type: none;
14
- padding-left: 0;
15
- margin-bottom: 0;
16
-
17
- .tree-node {
18
- display: flex;
19
- align-items: center;
20
- }
21
- }
22
-
23
- .done {
24
- text-decoration: line-through;
25
- }
26
-
27
12
  .text-muted {
28
13
  color: #6c757d !important;
29
14
  }
@@ -122,6 +107,10 @@
122
107
  }
123
108
  }
124
109
 
110
+ .modal-open {
111
+ overflow: hidden !important;
112
+ }
113
+
125
114
 
126
115
  // TODO
127
116
  :root {
@@ -1,13 +0,0 @@
1
- /// <reference types="react" />
2
- export interface ITreeNodeProps {
3
- id: string;
4
- label: string;
5
- level: number;
6
- parentId: string;
7
- hasChildren: boolean;
8
- isExpanded: boolean;
9
- isSelected: boolean;
10
- onToggleExpand: (id: string) => void;
11
- onClickSelect: (id: string) => void;
12
- }
13
- export declare const TreeNode: (props: ITreeNodeProps) => JSX.Element;