@ws-ui/shared 1.1.0 → 1.1.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.
@@ -13,7 +13,7 @@ interface IToastProps {
13
13
  customIcon?: ToastCustomIcon;
14
14
  }
15
15
  export interface IMultilineMessage {
16
- title: string;
16
+ title?: string;
17
17
  messages: string[];
18
18
  }
19
19
  export declare const Toast: React.FC<IToastProps>;
@@ -5,5 +5,6 @@ declare const IndentLines: FC<{
5
5
  depth: number;
6
6
  height?: number;
7
7
  width?: number;
8
+ stroke?: string;
8
9
  }>;
9
10
  export default IndentLines;
@@ -49,6 +49,10 @@ export interface ITreeProps {
49
49
  * Renders the encapsolated view
50
50
  */
51
51
  encapsulated?: boolean;
52
+ /**
53
+ * Extra classname(s)
54
+ */
55
+ className?: string;
52
56
  }
53
57
  export interface ITreeNodeData<T = any> {
54
58
  key: string;