prlg-ui 1.8.39 → 1.8.41

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/dist/index.d.ts CHANGED
@@ -182,7 +182,6 @@ index: number;
182
182
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
183
183
  tableBodyRef: CreateComponentPublicInstanceWithMixins<Readonly<TableBodyProps> & Readonly<{
184
184
  onToggleRow?: ((value: DataItem) => any) | undefined;
185
- onToggleGroup?: ((value: string) => any) | undefined;
186
185
  onRowClickHandler?: ((value: {
187
186
  data: DataItem;
188
187
  index: number;
@@ -192,7 +191,6 @@ handleScroll: (scrollElement?: HTMLElement) => void;
192
191
  updateContainerHeight: (scrollContainer?: HTMLElement) => void;
193
192
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
194
193
  toggleRow: (value: DataItem) => any;
195
- toggleGroup: (value: string) => any;
196
194
  rowClickHandler: (value: {
197
195
  data: DataItem;
198
196
  index: number;
@@ -208,7 +206,6 @@ M: {};
208
206
  Defaults: {};
209
207
  }, Readonly<TableBodyProps> & Readonly<{
210
208
  onToggleRow?: ((value: DataItem) => any) | undefined;
211
- onToggleGroup?: ((value: string) => any) | undefined;
212
209
  onRowClickHandler?: ((value: {
213
210
  data: DataItem;
214
211
  index: number;
@@ -674,7 +671,6 @@ declare function __VLS_template_2(): {
674
671
  refs: {
675
672
  tableBodyRef: CreateComponentPublicInstanceWithMixins<Readonly<TableBodyProps> & Readonly<{
676
673
  onToggleRow?: ((value: DataItem) => any) | undefined;
677
- onToggleGroup?: ((value: string) => any) | undefined;
678
674
  onRowClickHandler?: ((value: {
679
675
  data: DataItem;
680
676
  index: number;
@@ -684,7 +680,6 @@ declare function __VLS_template_2(): {
684
680
  updateContainerHeight: (scrollContainer?: HTMLElement) => void;
685
681
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
686
682
  toggleRow: (value: DataItem) => any;
687
- toggleGroup: (value: string) => any;
688
683
  rowClickHandler: (value: {
689
684
  data: DataItem;
690
685
  index: number;
@@ -700,7 +695,6 @@ declare function __VLS_template_2(): {
700
695
  Defaults: {};
701
696
  }, Readonly<TableBodyProps> & Readonly<{
702
697
  onToggleRow?: ((value: DataItem) => any) | undefined;
703
- onToggleGroup?: ((value: string) => any) | undefined;
704
698
  onRowClickHandler?: ((value: {
705
699
  data: DataItem;
706
700
  index: number;
@@ -1019,14 +1013,6 @@ export declare const ChipCheckbox: DefineComponent<__VLS_PublicProps_4, {}, {},
1019
1013
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
1020
1014
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1021
1015
 
1022
- declare type CollapsedGroups = {
1023
- has: (value: string) => boolean;
1024
- add: (value: string) => CollapsedGroups;
1025
- delete: (value: string) => boolean;
1026
- clear: () => void;
1027
- size: number;
1028
- };
1029
-
1030
1016
  export declare const Column: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
1031
1017
 
1032
1018
  declare type Column_2 = {
@@ -1670,9 +1656,6 @@ declare interface TableBodyProps {
1670
1656
  data: DataItem[];
1671
1657
  selectedRows: DataItem[] | DataItem;
1672
1658
  size: TableSize;
1673
- rowGroupMode: TableRowGroupMode | undefined;
1674
- groupRowsBy: string | undefined;
1675
- collapsedGroups: CollapsedGroups;
1676
1659
  colorHovered: boolean;
1677
1660
  scroller?: {
1678
1661
  enable: boolean;
@@ -1694,10 +1677,6 @@ declare type TableProps = {
1694
1677
  selectedRows?: DataItem[];
1695
1678
  /** Размер таблицы */
1696
1679
  size?: TableSize;
1697
- /** Режим группировки */
1698
- rowGroupMode?: TableRowGroupMode;
1699
- /** Поля для группировки */
1700
- groupRowsBy?: string;
1701
1680
  /** Поля для сортировки */
1702
1681
  sortField?: string[];
1703
1682
  /** Режим сортировки */
@@ -1732,8 +1711,6 @@ declare type TableProps = {
1732
1711
  loading?: boolean;
1733
1712
  };
1734
1713
 
1735
- declare type TableRowGroupMode = 'rowspan' | 'subheader';
1736
-
1737
1714
  declare type TableSize = 'small' | 'default' | 'large';
1738
1715
 
1739
1716
  declare type TableSlots = {