@pksep/yui 0.1.282 → 0.1.284

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.
@@ -159,5 +159,7 @@ export declare enum IconNameEnum {
159
159
  imagePaint = "image-paint",
160
160
  text = "text",
161
161
  colorPicker = "color-picker",
162
- connection = "connection"
162
+ connection = "connection",
163
+ tableError = "table-error",
164
+ rearrange = "rearrange"
163
165
  }
@@ -173,3 +173,5 @@ export declare const imagePaint: IVectorIcon;
173
173
  export declare const text: IVectorIcon;
174
174
  export declare const colorPicker: IVectorIcon;
175
175
  export declare const connection: IVectorIcon;
176
+ export declare const tableError: IVectorIcon;
177
+ export declare const rearrange: IVectorIcon;
@@ -7,11 +7,14 @@ declare function __VLS_template(): {
7
7
  search?(_: {}): any;
8
8
  "body-group"?(_: {}): any;
9
9
  body?(_: {}): any;
10
+ "error-button"?(_: {}): any;
10
11
  };
11
12
  declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableProps>, {
12
13
  dataTestid: string;
13
14
  isShowHorizontalScroll: boolean;
14
15
  isShowVerticalScroll: boolean;
16
+ isError: boolean;
17
+ errorLabel: string;
15
18
  }>>, {
16
19
  scrollToTop: () => void;
17
20
  setHeightSlot: (() => void) | undefined;
@@ -216,13 +219,17 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
216
219
  dataTestid: string;
217
220
  isShowHorizontalScroll: boolean;
218
221
  isShowVerticalScroll: boolean;
222
+ isError: boolean;
223
+ errorLabel: string;
219
224
  }>>> & Readonly<{
220
225
  "onUnmount-scroll"?: ((event: Event) => any) | undefined;
221
226
  "onUnmount-paginate"?: ((isCanPaginate: boolean) => any) | undefined;
222
227
  }>, {
223
228
  dataTestid: string;
229
+ isError: boolean;
224
230
  isShowVerticalScroll: boolean;
225
231
  isShowHorizontalScroll: boolean;
232
+ errorLabel: string;
226
233
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
227
234
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
228
235
  export default _default;
@@ -28,6 +28,9 @@ export interface ITableProps extends IDataTestIdProp, IScrollWrapperProps {
28
28
  tbodyId?: string;
29
29
  theadId?: string;
30
30
  columnCount?: number;
31
+ isError?: boolean;
32
+ onErrorHandler?: () => void;
33
+ errorLabel?: string;
31
34
  }
32
35
  export interface ITableEmit {
33
36
  (e: 'unmount-scroll', event: Event): void;