funda-ui 3.8.821 → 3.9.14

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/Tree/index.css CHANGED
@@ -84,14 +84,17 @@
84
84
  }
85
85
  .tree-diagram-default .tree-diagram-default-nav .checkbox-trigger > div {
86
86
  display: inline-block;
87
+ position: relative;
87
88
  }
88
89
  .tree-diagram-default .tree-diagram-default-nav .checkbox-trigger > div .form-check {
89
90
  min-height: auto;
90
91
  margin-bottom: 0;
91
92
  }
92
- .tree-diagram-default .tree-diagram-default-nav .checkbox-trigger > div .form-check [type=checkbox]:indeterminate {
93
+ .tree-diagram-default .tree-diagram-default-nav .checkbox-trigger > div .form-check [type=checkbox]:indeterminate,
94
+ .tree-diagram-default .tree-diagram-default-nav .checkbox-trigger > div .form-check [type=checkbox].indeterminate {
93
95
  background-color: var(--tree-checkbox-indeterminate-color);
94
96
  border-color: var(--tree-checkbox-indeterminate-color);
97
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
95
98
  }
96
99
  .tree-diagram-default .tree-diagram-default-nav .arrow {
97
100
  cursor: pointer;
package/Tree/index.d.ts CHANGED
@@ -4,6 +4,9 @@ declare module 'react' {
4
4
  children?: any;
5
5
  }
6
6
  }
7
+ interface ListSearchDataConfig {
8
+ title: string | number;
9
+ }
7
10
  declare type TreeProps = {
8
11
  /** Set TreeNode display Checkbox or not */
9
12
  checkable?: boolean;
@@ -27,6 +30,8 @@ declare type TreeProps = {
27
30
  childClassName?: string;
28
31
  /** Specify data of Cascading DropDown List as a JSON string format. */
29
32
  data?: any[any];
33
+ /** Retrieve data */
34
+ retrieveData?: ListSearchDataConfig[];
30
35
  /** -- */
31
36
  id?: string;
32
37
  onSelect?: (e: any, val: any, func: Function) => void;