cnhis-design-vue 3.3.3-beta.13 → 3.3.3-beta.16

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.
@@ -1966,12 +1966,11 @@ declare const ExpandField: SFCWithInstall<import("vue").DefineComponent<{
1966
1966
  renderLabel: ({ option }: {
1967
1967
  option: import("naive-ui").TreeOption;
1968
1968
  }) => JSX.Element;
1969
+ getChildren: (tag: import("../select-person/src/types").PTreeOption) => import("../../shared/types").AnyObject[];
1969
1970
  transformData: (trees: (import("naive-ui/es/tree/src/interface").TreeOptionBase & Record<string, unknown> & import("../../shared/types").AnyObject)[], parentNode: import("../select-person/src/types").PTreeOption | null, visitor?: Partial<Record<"enter" | "leave", (node: import("../select-person/src/types").PTreeOption) => unknown>> | undefined) => {
1970
1971
  treeItems: import("../select-person/src/types").PTreeOption[];
1971
1972
  leafCount: number;
1972
- innerItems: any[];
1973
1973
  };
1974
- getTreeOptionChildren: (item: import("../select-person/src/types").PTreeOption) => void;
1975
1974
  onSearch: () => Promise<void>;
1976
1975
  getAllKeys: (tree: import("../select-person/src/types").PTreeOption[], strategy: import("../select-person/src/types").Strategy) => (string | number)[];
1977
1976
  getParentKeys: (node: import("../select-person/src/types").PTreeOption, map: Map<string | number, import("../select-person/src/types").PTreeOption>) => never[];
@@ -2024,6 +2023,14 @@ declare const ExpandField: SFCWithInstall<import("vue").DefineComponent<{
2024
2023
  }[]>;
2025
2024
  required: true;
2026
2025
  };
2026
+ getChildren: {
2027
+ type: FunctionConstructor;
2028
+ required: true;
2029
+ };
2030
+ showTagHover: {
2031
+ type: BooleanConstructor;
2032
+ default: boolean;
2033
+ };
2027
2034
  type: {
2028
2035
  type: StringConstructor;
2029
2036
  default: string;
@@ -2043,6 +2050,14 @@ declare const ExpandField: SFCWithInstall<import("vue").DefineComponent<{
2043
2050
  }[]>;
2044
2051
  required: true;
2045
2052
  };
2053
+ getChildren: {
2054
+ type: FunctionConstructor;
2055
+ required: true;
2056
+ };
2057
+ showTagHover: {
2058
+ type: BooleanConstructor;
2059
+ default: boolean;
2060
+ };
2046
2061
  type: {
2047
2062
  type: StringConstructor;
2048
2063
  default: string;
@@ -2063,6 +2078,7 @@ declare const ExpandField: SFCWithInstall<import("vue").DefineComponent<{
2063
2078
  handleChange: (item: import("../../shared/types").AnyObject, checked: boolean) => void;
2064
2079
  NVirtualList: any;
2065
2080
  NCheckbox: any;
2081
+ NPopover: any;
2066
2082
  CDefaultPage: SFCWithInstall<import("vue").DefineComponent<{
2067
2083
  type: {
2068
2084
  type: StringConstructor;
@@ -2118,6 +2134,62 @@ declare const ExpandField: SFCWithInstall<import("vue").DefineComponent<{
2118
2134
  type: string;
2119
2135
  config: import("../../shared/types").AnyObject;
2120
2136
  }>>;
2137
+ GroupItem: import("vue").DefineComponent<{
2138
+ item: {
2139
+ type: import("vue").PropType<import("../../shared/types").AnyObject>;
2140
+ required: true;
2141
+ };
2142
+ }, {
2143
+ emit: (event: "checked", ...args: any[]) => void;
2144
+ handleClick: (item: import("../../shared/types").AnyObject) => void;
2145
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "checked"[], "checked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2146
+ item: {
2147
+ type: import("vue").PropType<import("../../shared/types").AnyObject>;
2148
+ required: true;
2149
+ };
2150
+ }>> & {
2151
+ onChecked?: ((...args: any[]) => any) | undefined;
2152
+ }, {}>;
2153
+ TagItem: import("vue").DefineComponent<{
2154
+ tag: {
2155
+ type: import("vue").PropType<import("../../shared/types").AnyObject>;
2156
+ required: true;
2157
+ };
2158
+ showClose: {
2159
+ type: BooleanConstructor;
2160
+ default: boolean;
2161
+ };
2162
+ }, {
2163
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
2164
+ tag: {
2165
+ type: import("vue").PropType<import("../../shared/types").AnyObject>;
2166
+ required: true;
2167
+ };
2168
+ showClose: {
2169
+ type: BooleanConstructor;
2170
+ default: boolean;
2171
+ };
2172
+ }>> & {
2173
+ onUnchecked?: ((...args: any[]) => any) | undefined;
2174
+ }>>;
2175
+ emit: (event: "unchecked", ...args: any[]) => void;
2176
+ updateChecked: (key: string, checked: boolean) => void;
2177
+ NIcon: any;
2178
+ CloseCircleSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2179
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "unchecked"[], "unchecked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2180
+ tag: {
2181
+ type: import("vue").PropType<import("../../shared/types").AnyObject>;
2182
+ required: true;
2183
+ };
2184
+ showClose: {
2185
+ type: BooleanConstructor;
2186
+ default: boolean;
2187
+ };
2188
+ }>> & {
2189
+ onUnchecked?: ((...args: any[]) => any) | undefined;
2190
+ }, {
2191
+ showClose: boolean;
2192
+ }>;
2121
2193
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "checked"[], "checked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2122
2194
  data: {
2123
2195
  type: import("vue").PropType<{
@@ -2131,6 +2203,14 @@ declare const ExpandField: SFCWithInstall<import("vue").DefineComponent<{
2131
2203
  }[]>;
2132
2204
  required: true;
2133
2205
  };
2206
+ getChildren: {
2207
+ type: FunctionConstructor;
2208
+ required: true;
2209
+ };
2210
+ showTagHover: {
2211
+ type: BooleanConstructor;
2212
+ default: boolean;
2213
+ };
2134
2214
  type: {
2135
2215
  type: StringConstructor;
2136
2216
  default: string;
@@ -2139,6 +2219,7 @@ declare const ExpandField: SFCWithInstall<import("vue").DefineComponent<{
2139
2219
  onChecked?: ((...args: any[]) => any) | undefined;
2140
2220
  }, {
2141
2221
  type: string;
2222
+ showTagHover: boolean;
2142
2223
  }>;
2143
2224
  TagItem: import("vue").DefineComponent<{
2144
2225
  tag: {
@@ -2473,7 +2554,7 @@ declare const ExpandField: SFCWithInstall<import("vue").DefineComponent<{
2473
2554
  [x: string]: unknown;
2474
2555
  }>;
2475
2556
  emits: (event: "check" | "checkWithLevel", ...args: any[]) => void;
2476
- getCheckWithLevel: () => any;
2557
+ getCheckWithLevel: (strategy?: import("../select-person/src/types").Strategy | undefined, hideLeaf?: boolean | undefined) => any;
2477
2558
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("check" | "checkWithLevel")[], "check" | "checkWithLevel", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2478
2559
  defaultList: {
2479
2560
  type: import("vue").PropType<((string | number) | {
@@ -1640,12 +1640,11 @@ declare const _default: import("vue").DefineComponent<{
1640
1640
  renderLabel: ({ option }: {
1641
1641
  option: import("naive-ui").TreeOption;
1642
1642
  }) => JSX.Element;
1643
+ getChildren: (tag: import("../../../select-person/src/types").PTreeOption) => import("../../../../shared/types").AnyObject[];
1643
1644
  transformData: (trees: (import("naive-ui/es/tree/src/interface").TreeOptionBase & Record<string, unknown> & import("../../../../shared/types").AnyObject)[], parentNode: import("../../../select-person/src/types").PTreeOption | null, visitor?: Partial<Record<"enter" | "leave", (node: import("../../../select-person/src/types").PTreeOption) => unknown>> | undefined) => {
1644
1645
  treeItems: import("../../../select-person/src/types").PTreeOption[];
1645
1646
  leafCount: number;
1646
- innerItems: any[];
1647
1647
  };
1648
- getTreeOptionChildren: (item: import("../../../select-person/src/types").PTreeOption) => void;
1649
1648
  onSearch: () => Promise<void>;
1650
1649
  getAllKeys: (tree: import("../../../select-person/src/types").PTreeOption[], strategy: import("../../../select-person/src/types").Strategy) => (string | number)[];
1651
1650
  getParentKeys: (node: import("../../../select-person/src/types").PTreeOption, map: Map<string | number, import("../../../select-person/src/types").PTreeOption>) => never[];
@@ -1698,6 +1697,14 @@ declare const _default: import("vue").DefineComponent<{
1698
1697
  }[]>;
1699
1698
  required: true;
1700
1699
  };
1700
+ getChildren: {
1701
+ type: FunctionConstructor;
1702
+ required: true;
1703
+ };
1704
+ showTagHover: {
1705
+ type: BooleanConstructor;
1706
+ default: boolean;
1707
+ };
1701
1708
  type: {
1702
1709
  type: StringConstructor;
1703
1710
  default: string;
@@ -1717,6 +1724,14 @@ declare const _default: import("vue").DefineComponent<{
1717
1724
  }[]>;
1718
1725
  required: true;
1719
1726
  };
1727
+ getChildren: {
1728
+ type: FunctionConstructor;
1729
+ required: true;
1730
+ };
1731
+ showTagHover: {
1732
+ type: BooleanConstructor;
1733
+ default: boolean;
1734
+ };
1720
1735
  type: {
1721
1736
  type: StringConstructor;
1722
1737
  default: string;
@@ -1737,6 +1752,7 @@ declare const _default: import("vue").DefineComponent<{
1737
1752
  handleChange: (item: import("../../../../shared/types").AnyObject, checked: boolean) => void;
1738
1753
  NVirtualList: any;
1739
1754
  NCheckbox: any;
1755
+ NPopover: any;
1740
1756
  CDefaultPage: import("../../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
1741
1757
  type: {
1742
1758
  type: StringConstructor;
@@ -1792,6 +1808,62 @@ declare const _default: import("vue").DefineComponent<{
1792
1808
  type: string;
1793
1809
  config: import("../../../../shared/types").AnyObject;
1794
1810
  }>>;
1811
+ GroupItem: import("vue").DefineComponent<{
1812
+ item: {
1813
+ type: PropType<import("../../../../shared/types").AnyObject>;
1814
+ required: true;
1815
+ };
1816
+ }, {
1817
+ emit: (event: "checked", ...args: any[]) => void;
1818
+ handleClick: (item: import("../../../../shared/types").AnyObject) => void;
1819
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "checked"[], "checked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1820
+ item: {
1821
+ type: PropType<import("../../../../shared/types").AnyObject>;
1822
+ required: true;
1823
+ };
1824
+ }>> & {
1825
+ onChecked?: ((...args: any[]) => any) | undefined;
1826
+ }, {}>;
1827
+ TagItem: import("vue").DefineComponent<{
1828
+ tag: {
1829
+ type: PropType<import("../../../../shared/types").AnyObject>;
1830
+ required: true;
1831
+ };
1832
+ showClose: {
1833
+ type: BooleanConstructor;
1834
+ default: boolean;
1835
+ };
1836
+ }, {
1837
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1838
+ tag: {
1839
+ type: PropType<import("../../../../shared/types").AnyObject>;
1840
+ required: true;
1841
+ };
1842
+ showClose: {
1843
+ type: BooleanConstructor;
1844
+ default: boolean;
1845
+ };
1846
+ }>> & {
1847
+ onUnchecked?: ((...args: any[]) => any) | undefined;
1848
+ }>>;
1849
+ emit: (event: "unchecked", ...args: any[]) => void;
1850
+ updateChecked: (key: string, checked: boolean) => void;
1851
+ NIcon: any;
1852
+ CloseCircleSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1853
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "unchecked"[], "unchecked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1854
+ tag: {
1855
+ type: PropType<import("../../../../shared/types").AnyObject>;
1856
+ required: true;
1857
+ };
1858
+ showClose: {
1859
+ type: BooleanConstructor;
1860
+ default: boolean;
1861
+ };
1862
+ }>> & {
1863
+ onUnchecked?: ((...args: any[]) => any) | undefined;
1864
+ }, {
1865
+ showClose: boolean;
1866
+ }>;
1795
1867
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "checked"[], "checked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1796
1868
  data: {
1797
1869
  type: PropType<{
@@ -1805,6 +1877,14 @@ declare const _default: import("vue").DefineComponent<{
1805
1877
  }[]>;
1806
1878
  required: true;
1807
1879
  };
1880
+ getChildren: {
1881
+ type: FunctionConstructor;
1882
+ required: true;
1883
+ };
1884
+ showTagHover: {
1885
+ type: BooleanConstructor;
1886
+ default: boolean;
1887
+ };
1808
1888
  type: {
1809
1889
  type: StringConstructor;
1810
1890
  default: string;
@@ -1813,6 +1893,7 @@ declare const _default: import("vue").DefineComponent<{
1813
1893
  onChecked?: ((...args: any[]) => any) | undefined;
1814
1894
  }, {
1815
1895
  type: string;
1896
+ showTagHover: boolean;
1816
1897
  }>;
1817
1898
  TagItem: import("vue").DefineComponent<{
1818
1899
  tag: {
@@ -2147,7 +2228,7 @@ declare const _default: import("vue").DefineComponent<{
2147
2228
  [x: string]: unknown;
2148
2229
  }>;
2149
2230
  emits: (event: "check" | "checkWithLevel", ...args: any[]) => void;
2150
- getCheckWithLevel: () => any;
2231
+ getCheckWithLevel: (strategy?: import("../../../select-person/src/types").Strategy | undefined, hideLeaf?: boolean | undefined) => any;
2151
2232
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("check" | "checkWithLevel")[], "check" | "checkWithLevel", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2152
2233
  defaultList: {
2153
2234
  type: PropType<((string | number) | {
@@ -1599,12 +1599,11 @@ declare const _default: import("vue").DefineComponent<{
1599
1599
  renderLabel: ({ option }: {
1600
1600
  option: import("naive-ui").TreeOption;
1601
1601
  }) => JSX.Element;
1602
+ getChildren: (tag: import("../../../select-person/src/types").PTreeOption) => AnyObject[];
1602
1603
  transformData: (trees: (import("naive-ui/es/tree/src/interface").TreeOptionBase & Record<string, unknown> & AnyObject)[], parentNode: import("../../../select-person/src/types").PTreeOption | null, visitor?: Partial<Record<"enter" | "leave", (node: import("../../../select-person/src/types").PTreeOption) => unknown>> | undefined) => {
1603
1604
  treeItems: import("../../../select-person/src/types").PTreeOption[];
1604
1605
  leafCount: number;
1605
- innerItems: any[];
1606
1606
  };
1607
- getTreeOptionChildren: (item: import("../../../select-person/src/types").PTreeOption) => void;
1608
1607
  onSearch: () => Promise<void>;
1609
1608
  getAllKeys: (tree: import("../../../select-person/src/types").PTreeOption[], strategy: import("../../../select-person/src/types").Strategy) => (string | number)[];
1610
1609
  getParentKeys: (node: import("../../../select-person/src/types").PTreeOption, map: Map<string | number, import("../../../select-person/src/types").PTreeOption>) => never[];
@@ -1657,6 +1656,14 @@ declare const _default: import("vue").DefineComponent<{
1657
1656
  }[]>;
1658
1657
  required: true;
1659
1658
  };
1659
+ getChildren: {
1660
+ type: FunctionConstructor;
1661
+ required: true;
1662
+ };
1663
+ showTagHover: {
1664
+ type: BooleanConstructor;
1665
+ default: boolean;
1666
+ };
1660
1667
  type: {
1661
1668
  type: StringConstructor;
1662
1669
  default: string;
@@ -1676,6 +1683,14 @@ declare const _default: import("vue").DefineComponent<{
1676
1683
  }[]>;
1677
1684
  required: true;
1678
1685
  };
1686
+ getChildren: {
1687
+ type: FunctionConstructor;
1688
+ required: true;
1689
+ };
1690
+ showTagHover: {
1691
+ type: BooleanConstructor;
1692
+ default: boolean;
1693
+ };
1679
1694
  type: {
1680
1695
  type: StringConstructor;
1681
1696
  default: string;
@@ -1696,6 +1711,7 @@ declare const _default: import("vue").DefineComponent<{
1696
1711
  handleChange: (item: AnyObject, checked: boolean) => void;
1697
1712
  NVirtualList: any;
1698
1713
  NCheckbox: any;
1714
+ NPopover: any;
1699
1715
  CDefaultPage: import("../../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
1700
1716
  type: {
1701
1717
  type: StringConstructor;
@@ -1751,6 +1767,62 @@ declare const _default: import("vue").DefineComponent<{
1751
1767
  type: string;
1752
1768
  config: AnyObject;
1753
1769
  }>>;
1770
+ GroupItem: import("vue").DefineComponent<{
1771
+ item: {
1772
+ type: PropType<AnyObject>;
1773
+ required: true;
1774
+ };
1775
+ }, {
1776
+ emit: (event: "checked", ...args: any[]) => void;
1777
+ handleClick: (item: AnyObject) => void;
1778
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "checked"[], "checked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1779
+ item: {
1780
+ type: PropType<AnyObject>;
1781
+ required: true;
1782
+ };
1783
+ }>> & {
1784
+ onChecked?: ((...args: any[]) => any) | undefined;
1785
+ }, {}>;
1786
+ TagItem: import("vue").DefineComponent<{
1787
+ tag: {
1788
+ type: PropType<AnyObject>;
1789
+ required: true;
1790
+ };
1791
+ showClose: {
1792
+ type: BooleanConstructor;
1793
+ default: boolean;
1794
+ };
1795
+ }, {
1796
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1797
+ tag: {
1798
+ type: PropType<AnyObject>;
1799
+ required: true;
1800
+ };
1801
+ showClose: {
1802
+ type: BooleanConstructor;
1803
+ default: boolean;
1804
+ };
1805
+ }>> & {
1806
+ onUnchecked?: ((...args: any[]) => any) | undefined;
1807
+ }>>;
1808
+ emit: (event: "unchecked", ...args: any[]) => void;
1809
+ updateChecked: (key: string, checked: boolean) => void;
1810
+ NIcon: any;
1811
+ CloseCircleSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1812
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "unchecked"[], "unchecked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1813
+ tag: {
1814
+ type: PropType<AnyObject>;
1815
+ required: true;
1816
+ };
1817
+ showClose: {
1818
+ type: BooleanConstructor;
1819
+ default: boolean;
1820
+ };
1821
+ }>> & {
1822
+ onUnchecked?: ((...args: any[]) => any) | undefined;
1823
+ }, {
1824
+ showClose: boolean;
1825
+ }>;
1754
1826
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "checked"[], "checked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1755
1827
  data: {
1756
1828
  type: PropType<{
@@ -1764,6 +1836,14 @@ declare const _default: import("vue").DefineComponent<{
1764
1836
  }[]>;
1765
1837
  required: true;
1766
1838
  };
1839
+ getChildren: {
1840
+ type: FunctionConstructor;
1841
+ required: true;
1842
+ };
1843
+ showTagHover: {
1844
+ type: BooleanConstructor;
1845
+ default: boolean;
1846
+ };
1767
1847
  type: {
1768
1848
  type: StringConstructor;
1769
1849
  default: string;
@@ -1772,6 +1852,7 @@ declare const _default: import("vue").DefineComponent<{
1772
1852
  onChecked?: ((...args: any[]) => any) | undefined;
1773
1853
  }, {
1774
1854
  type: string;
1855
+ showTagHover: boolean;
1775
1856
  }>;
1776
1857
  TagItem: import("vue").DefineComponent<{
1777
1858
  tag: {
@@ -2106,7 +2187,7 @@ declare const _default: import("vue").DefineComponent<{
2106
2187
  [x: string]: unknown;
2107
2188
  }>;
2108
2189
  emits: (event: "check" | "checkWithLevel", ...args: any[]) => void;
2109
- getCheckWithLevel: () => any;
2190
+ getCheckWithLevel: (strategy?: import("../../../select-person/src/types").Strategy | undefined, hideLeaf?: boolean | undefined) => any;
2110
2191
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("check" | "checkWithLevel")[], "check" | "checkWithLevel", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2111
2192
  defaultList: {
2112
2193
  type: PropType<((string | number) | {
@@ -1910,12 +1910,11 @@ declare const _default: import("vue").DefineComponent<{
1910
1910
  renderLabel: ({ option }: {
1911
1911
  option: import("naive-ui").TreeOption;
1912
1912
  }) => JSX.Element;
1913
+ getChildren: (tag: import("../../../select-person/src/types").PTreeOption) => AnyObject[];
1913
1914
  transformData: (trees: (import("naive-ui/es/tree/src/interface").TreeOptionBase & Record<string, unknown> & AnyObject)[], parentNode: import("../../../select-person/src/types").PTreeOption | null, visitor?: Partial<Record<"enter" | "leave", (node: import("../../../select-person/src/types").PTreeOption) => unknown>> | undefined) => {
1914
1915
  treeItems: import("../../../select-person/src/types").PTreeOption[];
1915
1916
  leafCount: number;
1916
- innerItems: any[];
1917
1917
  };
1918
- getTreeOptionChildren: (item: import("../../../select-person/src/types").PTreeOption) => void;
1919
1918
  onSearch: () => Promise<void>;
1920
1919
  getAllKeys: (tree: import("../../../select-person/src/types").PTreeOption[], strategy: import("../../../select-person/src/types").Strategy) => (string | number)[];
1921
1920
  getParentKeys: (node: import("../../../select-person/src/types").PTreeOption, map: Map<string | number, import("../../../select-person/src/types").PTreeOption>) => never[];
@@ -1968,6 +1967,14 @@ declare const _default: import("vue").DefineComponent<{
1968
1967
  }[]>;
1969
1968
  required: true;
1970
1969
  };
1970
+ getChildren: {
1971
+ type: FunctionConstructor;
1972
+ required: true;
1973
+ };
1974
+ showTagHover: {
1975
+ type: BooleanConstructor;
1976
+ default: boolean;
1977
+ };
1971
1978
  type: {
1972
1979
  type: StringConstructor;
1973
1980
  default: string;
@@ -1987,6 +1994,14 @@ declare const _default: import("vue").DefineComponent<{
1987
1994
  }[]>;
1988
1995
  required: true;
1989
1996
  };
1997
+ getChildren: {
1998
+ type: FunctionConstructor;
1999
+ required: true;
2000
+ };
2001
+ showTagHover: {
2002
+ type: BooleanConstructor;
2003
+ default: boolean;
2004
+ };
1990
2005
  type: {
1991
2006
  type: StringConstructor;
1992
2007
  default: string;
@@ -2007,6 +2022,7 @@ declare const _default: import("vue").DefineComponent<{
2007
2022
  handleChange: (item: AnyObject, checked: boolean) => void;
2008
2023
  NVirtualList: any;
2009
2024
  NCheckbox: any;
2025
+ NPopover: any;
2010
2026
  CDefaultPage: import("../../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
2011
2027
  type: {
2012
2028
  type: StringConstructor;
@@ -2062,6 +2078,62 @@ declare const _default: import("vue").DefineComponent<{
2062
2078
  type: string;
2063
2079
  config: AnyObject;
2064
2080
  }>>;
2081
+ GroupItem: import("vue").DefineComponent<{
2082
+ item: {
2083
+ type: import("vue").PropType<AnyObject>;
2084
+ required: true;
2085
+ };
2086
+ }, {
2087
+ emit: (event: "checked", ...args: any[]) => void;
2088
+ handleClick: (item: AnyObject) => void;
2089
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "checked"[], "checked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2090
+ item: {
2091
+ type: import("vue").PropType<AnyObject>;
2092
+ required: true;
2093
+ };
2094
+ }>> & {
2095
+ onChecked?: ((...args: any[]) => any) | undefined;
2096
+ }, {}>;
2097
+ TagItem: import("vue").DefineComponent<{
2098
+ tag: {
2099
+ type: import("vue").PropType<AnyObject>;
2100
+ required: true;
2101
+ };
2102
+ showClose: {
2103
+ type: BooleanConstructor;
2104
+ default: boolean;
2105
+ };
2106
+ }, {
2107
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
2108
+ tag: {
2109
+ type: import("vue").PropType<AnyObject>;
2110
+ required: true;
2111
+ };
2112
+ showClose: {
2113
+ type: BooleanConstructor;
2114
+ default: boolean;
2115
+ };
2116
+ }>> & {
2117
+ onUnchecked?: ((...args: any[]) => any) | undefined;
2118
+ }>>;
2119
+ emit: (event: "unchecked", ...args: any[]) => void;
2120
+ updateChecked: (key: string, checked: boolean) => void;
2121
+ NIcon: any;
2122
+ CloseCircleSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2123
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "unchecked"[], "unchecked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2124
+ tag: {
2125
+ type: import("vue").PropType<AnyObject>;
2126
+ required: true;
2127
+ };
2128
+ showClose: {
2129
+ type: BooleanConstructor;
2130
+ default: boolean;
2131
+ };
2132
+ }>> & {
2133
+ onUnchecked?: ((...args: any[]) => any) | undefined;
2134
+ }, {
2135
+ showClose: boolean;
2136
+ }>;
2065
2137
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "checked"[], "checked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2066
2138
  data: {
2067
2139
  type: import("vue").PropType<{
@@ -2075,6 +2147,14 @@ declare const _default: import("vue").DefineComponent<{
2075
2147
  }[]>;
2076
2148
  required: true;
2077
2149
  };
2150
+ getChildren: {
2151
+ type: FunctionConstructor;
2152
+ required: true;
2153
+ };
2154
+ showTagHover: {
2155
+ type: BooleanConstructor;
2156
+ default: boolean;
2157
+ };
2078
2158
  type: {
2079
2159
  type: StringConstructor;
2080
2160
  default: string;
@@ -2083,6 +2163,7 @@ declare const _default: import("vue").DefineComponent<{
2083
2163
  onChecked?: ((...args: any[]) => any) | undefined;
2084
2164
  }, {
2085
2165
  type: string;
2166
+ showTagHover: boolean;
2086
2167
  }>;
2087
2168
  TagItem: import("vue").DefineComponent<{
2088
2169
  tag: {
@@ -2417,7 +2498,7 @@ declare const _default: import("vue").DefineComponent<{
2417
2498
  [x: string]: unknown;
2418
2499
  }>;
2419
2500
  emits: (event: "check" | "checkWithLevel", ...args: any[]) => void;
2420
- getCheckWithLevel: () => any;
2501
+ getCheckWithLevel: (strategy?: import("../../../select-person/src/types").Strategy | undefined, hideLeaf?: boolean | undefined) => any;
2421
2502
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("check" | "checkWithLevel")[], "check" | "checkWithLevel", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2422
2503
  defaultList: {
2423
2504
  type: import("vue").PropType<((string | number) | {