prlg-ui 1.8.9 → 1.8.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.
package/dist/index.d.ts CHANGED
@@ -218,7 +218,9 @@ declare const __VLS_component_21: DefineComponent<__VLS_Props_31, {}, {}, {}, {}
218
218
 
219
219
  declare const __VLS_component_22: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
220
220
 
221
- declare const __VLS_component_3: DefineComponent<ColumnProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ColumnProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
221
+ declare const __VLS_component_3: DefineComponent<ColumnProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ColumnProps> & Readonly<{}>, {
222
+ visible: boolean;
223
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
222
224
 
223
225
  declare const __VLS_component_4: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
224
226
  "update:modelValue": (value: any) => any;
@@ -1014,6 +1016,7 @@ declare type CollapsedGroups = {
1014
1016
  export declare const Column: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
1015
1017
 
1016
1018
  declare type Column_2 = {
1019
+ id: string;
1017
1020
  header?: string;
1018
1021
  field?: string;
1019
1022
  description?: string;
@@ -1635,6 +1638,8 @@ declare type TableProps = {
1635
1638
  maxHeight?: string | number | undefined;
1636
1639
  /** Функция для применения стилей к строке таблицы */
1637
1640
  rowStyle?: (data: DataItem) => CSSProperties;
1641
+ /** Состояние загрузки */
1642
+ loading?: boolean;
1638
1643
  };
1639
1644
 
1640
1645
  declare type TableRowGroupMode = 'rowspan' | 'subheader';
@@ -1643,6 +1648,7 @@ declare type TableSize = 'small' | 'default' | 'large';
1643
1648
 
1644
1649
  declare type TableSlots = {
1645
1650
  default(): any;
1651
+ empty?(): any;
1646
1652
  };
1647
1653
 
1648
1654
  export declare const TabList: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;