@pksep/yui 0.1.282 → 0.1.283
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/components/Icon/enum/enum.d.ts +3 -1
- package/dist/components/Icon/icons.d.ts +2 -0
- package/dist/components/Table/Table.vue.d.ts +7 -0
- package/dist/components/Table/interface/interface.d.ts +3 -0
- package/dist/sep-yui.es.ts +10935 -10859
- package/dist/sep-yui.umd.ts +100 -83
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -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;
|