lkt-item-crud 2.0.10 → 2.0.11

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.
@@ -11,6 +11,7 @@ type __VLS_Props = {
11
11
  updateButton?: ButtonConfig | false;
12
12
  dropButton?: ButtonConfig | false;
13
13
  editModeButton?: ButtonConfig | false;
14
+ groupButton?: ButtonConfig | boolean;
14
15
  dataChanged: boolean;
15
16
  canUpdate?: boolean;
16
17
  canDrop?: boolean;
@@ -1643,6 +1644,412 @@ declare const safeCreateButton: import("vue").Ref<{
1643
1644
  events?: {
1644
1645
  click?: Function | undefined;
1645
1646
  } | undefined;
1647
+ }>, safeGroupButton: import("vue").Ref<{
1648
+ type?: import("lkt-vue-kernel").ButtonType | undefined;
1649
+ name?: string | undefined;
1650
+ value?: string | undefined;
1651
+ disabled?: import("lkt-vue-kernel").ValidIsDisabledValue;
1652
+ openTooltip?: boolean | undefined;
1653
+ loading?: boolean | undefined;
1654
+ class?: string | undefined;
1655
+ containerClass?: string | undefined;
1656
+ wrapContent?: boolean | undefined;
1657
+ text?: import("lkt-vue-kernel").ValidTextValue;
1658
+ icon?: string | undefined;
1659
+ iconEnd?: string | undefined;
1660
+ img?: string | undefined;
1661
+ checked?: boolean | undefined;
1662
+ textOn?: import("lkt-vue-kernel").ValidTextValue;
1663
+ textOff?: import("lkt-vue-kernel").ValidTextValue;
1664
+ iconOn?: import("lkt-vue-kernel").ValidTextValue;
1665
+ iconOff?: import("lkt-vue-kernel").ValidTextValue;
1666
+ iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
1667
+ iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
1668
+ dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
1669
+ anchor?: {
1670
+ type?: import("lkt-vue-kernel").AnchorType | undefined;
1671
+ to?: string | {
1672
+ name?: import("vue-router").RouteRecordNameGeneric;
1673
+ params?: import("vue-router").RouteParamsRawGeneric | undefined;
1674
+ path?: undefined | undefined;
1675
+ query?: import("vue-router").LocationQueryRaw | undefined;
1676
+ hash?: string | undefined;
1677
+ replace?: boolean | undefined;
1678
+ force?: boolean | undefined;
1679
+ state?: import("vue-router").HistoryState | undefined;
1680
+ } | {
1681
+ path: string;
1682
+ query?: import("vue-router").LocationQueryRaw | undefined;
1683
+ hash?: string | undefined;
1684
+ replace?: boolean | undefined;
1685
+ force?: boolean | undefined;
1686
+ state?: import("vue-router").HistoryState | undefined;
1687
+ } | undefined;
1688
+ class?: string | undefined;
1689
+ isActive?: boolean | undefined;
1690
+ downloadFileName?: string | undefined;
1691
+ disabled?: boolean | undefined;
1692
+ confirmModal?: import("lkt-vue-kernel").ValidModalName;
1693
+ confirmModalKey?: import("lkt-vue-kernel").ValidModalKey;
1694
+ confirmData?: {
1695
+ [x: string]: any;
1696
+ [x: number]: any;
1697
+ modalName?: import("lkt-vue-kernel").ValidModalName;
1698
+ modalKey?: import("lkt-vue-kernel").ValidModalKey;
1699
+ zIndex?: number | undefined;
1700
+ type?: import("lkt-vue-kernel").ModalType | undefined;
1701
+ size?: string | undefined;
1702
+ preTitle?: string | undefined;
1703
+ preTitleIcon?: string | undefined;
1704
+ title?: string | undefined;
1705
+ closeIcon?: string | undefined;
1706
+ closeConfirm?: import("lkt-vue-kernel").ValidModalName;
1707
+ closeConfirmKey?: import("lkt-vue-kernel").ValidModalKey;
1708
+ showClose?: boolean | undefined;
1709
+ disabledClose?: boolean | undefined;
1710
+ disabledVeilClick?: boolean | undefined;
1711
+ hiddenFooter?: boolean | undefined;
1712
+ beforeClose?: import("lkt-vue-kernel").ValidBeforeCloseModal;
1713
+ item?: LktObject | undefined;
1714
+ confirmButton?: /*elided*/ any | undefined;
1715
+ cancelButton?: /*elided*/ any | undefined;
1716
+ } | undefined;
1717
+ imposter?: boolean | undefined;
1718
+ external?: boolean | undefined;
1719
+ text?: import("lkt-vue-kernel").ValidTextValue;
1720
+ events?: {
1721
+ click?: Function | undefined;
1722
+ } | undefined;
1723
+ onClick?: Function | undefined;
1724
+ } | {
1725
+ type: import("lkt-vue-kernel").AnchorType;
1726
+ to?: string | {
1727
+ name?: import("vue-router").RouteRecordNameGeneric;
1728
+ params?: import("vue-router").RouteParamsRawGeneric | undefined;
1729
+ path?: undefined | undefined;
1730
+ query?: import("vue-router").LocationQueryRaw | undefined;
1731
+ hash?: string | undefined;
1732
+ replace?: boolean | undefined;
1733
+ force?: boolean | undefined;
1734
+ state?: import("vue-router").HistoryState | undefined;
1735
+ } | {
1736
+ path: string;
1737
+ query?: import("vue-router").LocationQueryRaw | undefined;
1738
+ hash?: string | undefined;
1739
+ replace?: boolean | undefined;
1740
+ force?: boolean | undefined;
1741
+ state?: import("vue-router").HistoryState | undefined;
1742
+ } | undefined;
1743
+ class: string;
1744
+ isActive: boolean;
1745
+ downloadFileName: string;
1746
+ disabled: boolean;
1747
+ onClick: Function | undefined;
1748
+ confirmModal: import("lkt-vue-kernel").ValidModalName;
1749
+ confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
1750
+ confirmData: LktObject;
1751
+ imposter: boolean;
1752
+ external: boolean;
1753
+ text?: import("lkt-vue-kernel").ValidTextValue;
1754
+ events?: {
1755
+ click?: Function | undefined;
1756
+ } | undefined;
1757
+ getHref: () => string;
1758
+ feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
1759
+ assignProp: (key: string, value: any) => void;
1760
+ } | undefined;
1761
+ resource?: string | undefined;
1762
+ resourceData?: LktObject | undefined;
1763
+ modal?: import("lkt-vue-kernel").ValidModalName;
1764
+ modalKey?: import("lkt-vue-kernel").ValidModalKey;
1765
+ modalData?: Function | {
1766
+ [x: string]: any;
1767
+ [x: number]: any;
1768
+ modalName?: import("lkt-vue-kernel").ValidModalName;
1769
+ modalKey?: import("lkt-vue-kernel").ValidModalKey;
1770
+ zIndex?: number | undefined;
1771
+ type?: import("lkt-vue-kernel").ModalType | undefined;
1772
+ size?: string | undefined;
1773
+ preTitle?: string | undefined;
1774
+ preTitleIcon?: string | undefined;
1775
+ title?: string | undefined;
1776
+ closeIcon?: string | undefined;
1777
+ closeConfirm?: import("lkt-vue-kernel").ValidModalName;
1778
+ closeConfirmKey?: import("lkt-vue-kernel").ValidModalKey;
1779
+ showClose?: boolean | undefined;
1780
+ disabledClose?: boolean | undefined;
1781
+ disabledVeilClick?: boolean | undefined;
1782
+ hiddenFooter?: boolean | undefined;
1783
+ beforeClose?: import("lkt-vue-kernel").ValidBeforeCloseModal;
1784
+ item?: LktObject | undefined;
1785
+ confirmButton?: /*elided*/ any | undefined;
1786
+ cancelButton?: /*elided*/ any | undefined;
1787
+ } | undefined;
1788
+ confirmModal?: import("lkt-vue-kernel").ValidModalName;
1789
+ confirmModalKey?: import("lkt-vue-kernel").ValidModalKey;
1790
+ confirmData?: {
1791
+ [x: string]: any;
1792
+ [x: number]: any;
1793
+ modalName?: import("lkt-vue-kernel").ValidModalName;
1794
+ modalKey?: import("lkt-vue-kernel").ValidModalKey;
1795
+ zIndex?: number | undefined;
1796
+ type?: import("lkt-vue-kernel").ModalType | undefined;
1797
+ size?: string | undefined;
1798
+ preTitle?: string | undefined;
1799
+ preTitleIcon?: string | undefined;
1800
+ title?: string | undefined;
1801
+ closeIcon?: string | undefined;
1802
+ closeConfirm?: import("lkt-vue-kernel").ValidModalName;
1803
+ closeConfirmKey?: import("lkt-vue-kernel").ValidModalKey;
1804
+ showClose?: boolean | undefined;
1805
+ disabledClose?: boolean | undefined;
1806
+ disabledVeilClick?: boolean | undefined;
1807
+ hiddenFooter?: boolean | undefined;
1808
+ beforeClose?: import("lkt-vue-kernel").ValidBeforeCloseModal;
1809
+ item?: LktObject | undefined;
1810
+ confirmButton?: /*elided*/ any | undefined;
1811
+ cancelButton?: /*elided*/ any | undefined;
1812
+ } | undefined;
1813
+ modalCallbacks?: {
1814
+ modalName: import("lkt-vue-kernel").ValidModalName;
1815
+ modalKey?: import("lkt-vue-kernel").ValidModalKey;
1816
+ action: import("lkt-vue-kernel").ModalCallbackAction;
1817
+ method?: string | undefined;
1818
+ args?: LktObject | undefined;
1819
+ }[] | undefined;
1820
+ tooltip?: {
1821
+ modelValue?: boolean | undefined;
1822
+ alwaysOpen?: boolean | undefined;
1823
+ class?: string | undefined;
1824
+ text?: string | undefined;
1825
+ icon?: string | undefined;
1826
+ iconAtEnd?: boolean | undefined;
1827
+ engine?: import("lkt-vue-kernel").TooltipPositionEngine | undefined;
1828
+ referrerMargin?: number | string | undefined;
1829
+ windowMargin?: number | string | undefined;
1830
+ referrerWidth?: boolean | undefined;
1831
+ referrer?: HTMLElement | undefined;
1832
+ locationY?: import("lkt-vue-kernel").TooltipLocationY | undefined;
1833
+ locationX?: import("lkt-vue-kernel").TooltipLocationX | undefined;
1834
+ showOnReferrerHover?: boolean | undefined;
1835
+ showOnReferrerHoverDelay?: number | undefined;
1836
+ hideOnReferrerLeave?: boolean | undefined;
1837
+ hideOnReferrerLeaveDelay?: number | undefined;
1838
+ } | undefined;
1839
+ splitIcon?: string | undefined;
1840
+ showTooltipOnHover?: boolean | undefined;
1841
+ showTooltipOnHoverDelay?: number | undefined;
1842
+ hideTooltipOnLeave?: boolean | undefined;
1843
+ splitClass?: string | undefined;
1844
+ tabindex?: import("lkt-vue-kernel").ValidTabIndex;
1845
+ prop?: LktObject | undefined;
1846
+ clickRef?: (Element | import("vue").VueElement) | undefined;
1847
+ events?: {
1848
+ click?: Function | undefined;
1849
+ } | undefined;
1850
+ }, Partial<ButtonConfig> | {
1851
+ type?: import("lkt-vue-kernel").ButtonType | undefined;
1852
+ name?: string | undefined;
1853
+ value?: string | undefined;
1854
+ disabled?: import("lkt-vue-kernel").ValidIsDisabledValue;
1855
+ openTooltip?: boolean | undefined;
1856
+ loading?: boolean | undefined;
1857
+ class?: string | undefined;
1858
+ containerClass?: string | undefined;
1859
+ wrapContent?: boolean | undefined;
1860
+ text?: import("lkt-vue-kernel").ValidTextValue;
1861
+ icon?: string | undefined;
1862
+ iconEnd?: string | undefined;
1863
+ img?: string | undefined;
1864
+ checked?: boolean | undefined;
1865
+ textOn?: import("lkt-vue-kernel").ValidTextValue;
1866
+ textOff?: import("lkt-vue-kernel").ValidTextValue;
1867
+ iconOn?: import("lkt-vue-kernel").ValidTextValue;
1868
+ iconOff?: import("lkt-vue-kernel").ValidTextValue;
1869
+ iconEndOn?: import("lkt-vue-kernel").ValidTextValue;
1870
+ iconEndOff?: import("lkt-vue-kernel").ValidTextValue;
1871
+ dot?: import("lkt-vue-kernel").ValidButtonDot | undefined;
1872
+ anchor?: {
1873
+ type?: import("lkt-vue-kernel").AnchorType | undefined;
1874
+ to?: string | {
1875
+ name?: import("vue-router").RouteRecordNameGeneric;
1876
+ params?: import("vue-router").RouteParamsRawGeneric | undefined;
1877
+ path?: undefined | undefined;
1878
+ query?: import("vue-router").LocationQueryRaw | undefined;
1879
+ hash?: string | undefined;
1880
+ replace?: boolean | undefined;
1881
+ force?: boolean | undefined;
1882
+ state?: import("vue-router").HistoryState | undefined;
1883
+ } | {
1884
+ path: string;
1885
+ query?: import("vue-router").LocationQueryRaw | undefined;
1886
+ hash?: string | undefined;
1887
+ replace?: boolean | undefined;
1888
+ force?: boolean | undefined;
1889
+ state?: import("vue-router").HistoryState | undefined;
1890
+ } | undefined;
1891
+ class?: string | undefined;
1892
+ isActive?: boolean | undefined;
1893
+ downloadFileName?: string | undefined;
1894
+ disabled?: boolean | undefined;
1895
+ confirmModal?: import("lkt-vue-kernel").ValidModalName;
1896
+ confirmModalKey?: import("lkt-vue-kernel").ValidModalKey;
1897
+ confirmData?: {
1898
+ [x: string]: any;
1899
+ [x: number]: any;
1900
+ modalName?: import("lkt-vue-kernel").ValidModalName;
1901
+ modalKey?: import("lkt-vue-kernel").ValidModalKey;
1902
+ zIndex?: number | undefined;
1903
+ type?: import("lkt-vue-kernel").ModalType | undefined;
1904
+ size?: string | undefined;
1905
+ preTitle?: string | undefined;
1906
+ preTitleIcon?: string | undefined;
1907
+ title?: string | undefined;
1908
+ closeIcon?: string | undefined;
1909
+ closeConfirm?: import("lkt-vue-kernel").ValidModalName;
1910
+ closeConfirmKey?: import("lkt-vue-kernel").ValidModalKey;
1911
+ showClose?: boolean | undefined;
1912
+ disabledClose?: boolean | undefined;
1913
+ disabledVeilClick?: boolean | undefined;
1914
+ hiddenFooter?: boolean | undefined;
1915
+ beforeClose?: import("lkt-vue-kernel").ValidBeforeCloseModal;
1916
+ item?: LktObject | undefined;
1917
+ confirmButton?: /*elided*/ any | undefined;
1918
+ cancelButton?: /*elided*/ any | undefined;
1919
+ } | undefined;
1920
+ imposter?: boolean | undefined;
1921
+ external?: boolean | undefined;
1922
+ text?: import("lkt-vue-kernel").ValidTextValue;
1923
+ events?: {
1924
+ click?: Function | undefined;
1925
+ } | undefined;
1926
+ onClick?: Function | undefined;
1927
+ } | {
1928
+ type: import("lkt-vue-kernel").AnchorType;
1929
+ to?: string | {
1930
+ name?: import("vue-router").RouteRecordNameGeneric;
1931
+ params?: import("vue-router").RouteParamsRawGeneric | undefined;
1932
+ path?: undefined | undefined;
1933
+ query?: import("vue-router").LocationQueryRaw | undefined;
1934
+ hash?: string | undefined;
1935
+ replace?: boolean | undefined;
1936
+ force?: boolean | undefined;
1937
+ state?: import("vue-router").HistoryState | undefined;
1938
+ } | {
1939
+ path: string;
1940
+ query?: import("vue-router").LocationQueryRaw | undefined;
1941
+ hash?: string | undefined;
1942
+ replace?: boolean | undefined;
1943
+ force?: boolean | undefined;
1944
+ state?: import("vue-router").HistoryState | undefined;
1945
+ } | undefined;
1946
+ class: string;
1947
+ isActive: boolean;
1948
+ downloadFileName: string;
1949
+ disabled: boolean;
1950
+ onClick: Function | undefined;
1951
+ confirmModal: import("lkt-vue-kernel").ValidModalName;
1952
+ confirmModalKey: import("lkt-vue-kernel").ValidModalKey;
1953
+ confirmData: LktObject;
1954
+ imposter: boolean;
1955
+ external: boolean;
1956
+ text?: import("lkt-vue-kernel").ValidTextValue;
1957
+ events?: {
1958
+ click?: Function | undefined;
1959
+ } | undefined;
1960
+ getHref: () => string;
1961
+ feed: (data?: LktObject, target?: import("lkt-vue-kernel").Anchor | undefined) => void;
1962
+ assignProp: (key: string, value: any) => void;
1963
+ } | undefined;
1964
+ resource?: string | undefined;
1965
+ resourceData?: LktObject | undefined;
1966
+ modal?: import("lkt-vue-kernel").ValidModalName;
1967
+ modalKey?: import("lkt-vue-kernel").ValidModalKey;
1968
+ modalData?: Function | {
1969
+ [x: string]: any;
1970
+ [x: number]: any;
1971
+ modalName?: import("lkt-vue-kernel").ValidModalName;
1972
+ modalKey?: import("lkt-vue-kernel").ValidModalKey;
1973
+ zIndex?: number | undefined;
1974
+ type?: import("lkt-vue-kernel").ModalType | undefined;
1975
+ size?: string | undefined;
1976
+ preTitle?: string | undefined;
1977
+ preTitleIcon?: string | undefined;
1978
+ title?: string | undefined;
1979
+ closeIcon?: string | undefined;
1980
+ closeConfirm?: import("lkt-vue-kernel").ValidModalName;
1981
+ closeConfirmKey?: import("lkt-vue-kernel").ValidModalKey;
1982
+ showClose?: boolean | undefined;
1983
+ disabledClose?: boolean | undefined;
1984
+ disabledVeilClick?: boolean | undefined;
1985
+ hiddenFooter?: boolean | undefined;
1986
+ beforeClose?: import("lkt-vue-kernel").ValidBeforeCloseModal;
1987
+ item?: LktObject | undefined;
1988
+ confirmButton?: /*elided*/ any | undefined;
1989
+ cancelButton?: /*elided*/ any | undefined;
1990
+ } | undefined;
1991
+ confirmModal?: import("lkt-vue-kernel").ValidModalName;
1992
+ confirmModalKey?: import("lkt-vue-kernel").ValidModalKey;
1993
+ confirmData?: {
1994
+ [x: string]: any;
1995
+ [x: number]: any;
1996
+ modalName?: import("lkt-vue-kernel").ValidModalName;
1997
+ modalKey?: import("lkt-vue-kernel").ValidModalKey;
1998
+ zIndex?: number | undefined;
1999
+ type?: import("lkt-vue-kernel").ModalType | undefined;
2000
+ size?: string | undefined;
2001
+ preTitle?: string | undefined;
2002
+ preTitleIcon?: string | undefined;
2003
+ title?: string | undefined;
2004
+ closeIcon?: string | undefined;
2005
+ closeConfirm?: import("lkt-vue-kernel").ValidModalName;
2006
+ closeConfirmKey?: import("lkt-vue-kernel").ValidModalKey;
2007
+ showClose?: boolean | undefined;
2008
+ disabledClose?: boolean | undefined;
2009
+ disabledVeilClick?: boolean | undefined;
2010
+ hiddenFooter?: boolean | undefined;
2011
+ beforeClose?: import("lkt-vue-kernel").ValidBeforeCloseModal;
2012
+ item?: LktObject | undefined;
2013
+ confirmButton?: /*elided*/ any | undefined;
2014
+ cancelButton?: /*elided*/ any | undefined;
2015
+ } | undefined;
2016
+ modalCallbacks?: {
2017
+ modalName: import("lkt-vue-kernel").ValidModalName;
2018
+ modalKey?: import("lkt-vue-kernel").ValidModalKey;
2019
+ action: import("lkt-vue-kernel").ModalCallbackAction;
2020
+ method?: string | undefined;
2021
+ args?: LktObject | undefined;
2022
+ }[] | undefined;
2023
+ tooltip?: {
2024
+ modelValue?: boolean | undefined;
2025
+ alwaysOpen?: boolean | undefined;
2026
+ class?: string | undefined;
2027
+ text?: string | undefined;
2028
+ icon?: string | undefined;
2029
+ iconAtEnd?: boolean | undefined;
2030
+ engine?: import("lkt-vue-kernel").TooltipPositionEngine | undefined;
2031
+ referrerMargin?: number | string | undefined;
2032
+ windowMargin?: number | string | undefined;
2033
+ referrerWidth?: boolean | undefined;
2034
+ referrer?: HTMLElement | undefined;
2035
+ locationY?: import("lkt-vue-kernel").TooltipLocationY | undefined;
2036
+ locationX?: import("lkt-vue-kernel").TooltipLocationX | undefined;
2037
+ showOnReferrerHover?: boolean | undefined;
2038
+ showOnReferrerHoverDelay?: number | undefined;
2039
+ hideOnReferrerLeave?: boolean | undefined;
2040
+ hideOnReferrerLeaveDelay?: number | undefined;
2041
+ } | undefined;
2042
+ splitIcon?: string | undefined;
2043
+ showTooltipOnHover?: boolean | undefined;
2044
+ showTooltipOnHoverDelay?: number | undefined;
2045
+ hideTooltipOnLeave?: boolean | undefined;
2046
+ splitClass?: string | undefined;
2047
+ tabindex?: import("lkt-vue-kernel").ValidTabIndex;
2048
+ prop?: LktObject | undefined;
2049
+ clickRef?: (Element | import("vue").VueElement) | undefined;
2050
+ events?: {
2051
+ click?: Function | undefined;
2052
+ } | undefined;
1646
2053
  }>;
1647
2054
  declare const slots: SetupContext['slots'];
1648
2055
  declare const saveButtonRef: import("vue").Ref<HTMLButtonElement | null, HTMLButtonElement | null>;
@@ -1652,45 +2059,83 @@ declare const isEditing: import("vue").Ref<boolean, boolean>;
1652
2059
  declare const onButtonLoading: () => void, onButtonLoaded: () => void, onCreate: ($event: Event | undefined, r: HTTPResponse) => void, onSave: ($event: Event | undefined, r: HTTPResponse) => void, onDrop: ($event: Event | undefined, r: HTTPResponse) => void;
1653
2060
  declare const ableToUpdate: import("vue").ComputedRef<boolean>, ableToCreate: import("vue").ComputedRef<boolean>, ableToDrop: import("vue").ComputedRef<boolean>, showDropButton: import("vue").ComputedRef<boolean>, showSaveButton: import("vue").ComputedRef<boolean>, showSwitchButton: import("vue").ComputedRef<boolean>, showButtons: import("vue").ComputedRef<boolean>;
1654
2061
  declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
1655
- declare var __VLS_1: {
2062
+ declare var __VLS_11: {
1656
2063
  canUpdate: boolean | undefined;
1657
2064
  canDrop: boolean | undefined;
1658
2065
  perms: string[] | undefined;
1659
- }, __VLS_3: {
2066
+ }, __VLS_13: {
1660
2067
  canUpdate: boolean | undefined;
1661
2068
  canDrop: boolean | undefined;
1662
2069
  perms: string[] | undefined;
1663
- }, __VLS_17: {
2070
+ }, __VLS_27: {
1664
2071
  item: LktObject;
1665
2072
  editMode: boolean;
1666
2073
  isCreate: boolean;
1667
2074
  canUpdate: boolean | undefined;
1668
2075
  canDrop: boolean | undefined;
1669
- }, __VLS_31: {
2076
+ }, __VLS_41: {
1670
2077
  item: LktObject;
1671
2078
  editMode: boolean;
1672
2079
  isCreate: boolean;
1673
2080
  canUpdate: boolean | undefined;
1674
2081
  canDrop: boolean | undefined;
1675
- }, __VLS_45: {
2082
+ }, __VLS_55: {
1676
2083
  item: LktObject;
1677
2084
  editMode: boolean;
1678
2085
  isCreate: boolean;
1679
2086
  canUpdate: boolean | undefined;
1680
2087
  canDrop: boolean | undefined;
1681
- }, __VLS_47: {};
2088
+ }, __VLS_57: {}, __VLS_59: {
2089
+ canUpdate: boolean | undefined;
2090
+ canDrop: boolean | undefined;
2091
+ perms: string[] | undefined;
2092
+ }, __VLS_61: {
2093
+ canUpdate: boolean | undefined;
2094
+ canDrop: boolean | undefined;
2095
+ perms: string[] | undefined;
2096
+ }, __VLS_75: {
2097
+ item: LktObject;
2098
+ editMode: boolean;
2099
+ isCreate: boolean;
2100
+ canUpdate: boolean | undefined;
2101
+ canDrop: boolean | undefined;
2102
+ }, __VLS_89: {
2103
+ item: LktObject;
2104
+ editMode: boolean;
2105
+ isCreate: boolean;
2106
+ canUpdate: boolean | undefined;
2107
+ canDrop: boolean | undefined;
2108
+ }, __VLS_103: {
2109
+ item: LktObject;
2110
+ editMode: boolean;
2111
+ isCreate: boolean;
2112
+ canUpdate: boolean | undefined;
2113
+ canDrop: boolean | undefined;
2114
+ }, __VLS_105: {};
1682
2115
  type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
1683
- 'prev-buttons-ever'?: (props: typeof __VLS_1) => any;
2116
+ 'prev-buttons-ever'?: (props: typeof __VLS_11) => any;
2117
+ } & {
2118
+ 'prev-buttons'?: (props: typeof __VLS_13) => any;
2119
+ } & {
2120
+ 'button-save'?: (props: typeof __VLS_27) => any;
2121
+ } & {
2122
+ 'button-save'?: (props: typeof __VLS_41) => any;
2123
+ } & {
2124
+ 'button-drop'?: (props: typeof __VLS_55) => any;
2125
+ } & {
2126
+ buttons?: (props: typeof __VLS_57) => any;
2127
+ } & {
2128
+ 'prev-buttons-ever'?: (props: typeof __VLS_59) => any;
1684
2129
  } & {
1685
- 'prev-buttons'?: (props: typeof __VLS_3) => any;
2130
+ 'prev-buttons'?: (props: typeof __VLS_61) => any;
1686
2131
  } & {
1687
- 'button-save'?: (props: typeof __VLS_17) => any;
2132
+ 'button-save'?: (props: typeof __VLS_75) => any;
1688
2133
  } & {
1689
- 'button-save'?: (props: typeof __VLS_31) => any;
2134
+ 'button-save'?: (props: typeof __VLS_89) => any;
1690
2135
  } & {
1691
- 'button-drop'?: (props: typeof __VLS_45) => any;
2136
+ 'button-drop'?: (props: typeof __VLS_103) => any;
1692
2137
  } & {
1693
- buttons?: (props: typeof __VLS_47) => any;
2138
+ buttons?: (props: typeof __VLS_105) => any;
1694
2139
  }>;
1695
2140
  declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
1696
2141
  ItemCrudMode: typeof ItemCrudMode;
@@ -1698,6 +2143,7 @@ declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
1698
2143
  safeUpdateButton: typeof safeUpdateButton;
1699
2144
  safeDropButton: typeof safeDropButton;
1700
2145
  safeEditModeButton: typeof safeEditModeButton;
2146
+ safeGroupButton: typeof safeGroupButton;
1701
2147
  slots: typeof slots;
1702
2148
  saveButtonRef: typeof saveButtonRef;
1703
2149
  dropButtonRef: typeof dropButtonRef;
@@ -105,6 +105,7 @@ declare const __VLS_self: import("vue").DefineComponent<ItemCrudConfig, {
105
105
  dropButton: import("lkt-vue-kernel").ButtonConfig | false;
106
106
  createButton: import("lkt-vue-kernel").ButtonConfig | false;
107
107
  updateButton: import("lkt-vue-kernel").ButtonConfig | false;
108
+ groupButton: import("lkt-vue-kernel").ButtonConfig | boolean;
108
109
  buttonNavPosition: ItemCrudButtonNavPosition;
109
110
  buttonNavVisibility: import("lkt-vue-kernel").ItemCrudButtonNavVisibility;
110
111
  modalConfig: import("lkt-vue-kernel").ModalConfig;
@@ -153,6 +154,7 @@ declare const __VLS_component: import("vue").DefineComponent<ItemCrudConfig, {
153
154
  dropButton: import("lkt-vue-kernel").ButtonConfig | false;
154
155
  createButton: import("lkt-vue-kernel").ButtonConfig | false;
155
156
  updateButton: import("lkt-vue-kernel").ButtonConfig | false;
157
+ groupButton: import("lkt-vue-kernel").ButtonConfig | boolean;
156
158
  buttonNavPosition: ItemCrudButtonNavPosition;
157
159
  buttonNavVisibility: import("lkt-vue-kernel").ItemCrudButtonNavVisibility;
158
160
  modalConfig: import("lkt-vue-kernel").ModalConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lkt-item-crud",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "module": "./dist/build.js",