bkui-vue 0.0.2-beta.24 → 0.0.2-beta.26
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.cjs.js +61 -61
- package/dist/index.esm.js +9047 -9000
- package/dist/index.umd.js +60 -60
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/directives/index.js +1 -1
- package/lib/directives/tooltips.d.ts +2 -2
- package/lib/message/index.js +1 -1
- package/lib/plugin-popover/index.js +1 -1
- package/lib/popover/index.js +1 -1
- package/lib/select/index.d.ts +30 -18
- package/lib/select/index.js +1 -1
- package/lib/select/select.d.ts +12 -10
- package/lib/select/selectTagInput.d.ts +3 -0
- package/lib/table/components/table-cell.d.ts +28 -5
- package/lib/table/components/table-column.d.ts +8 -0
- package/lib/table/index.d.ts +12 -0
- package/lib/table/index.js +1 -1
- package/lib/table/plugins/settings.d.ts +5 -9
- package/lib/table/props.d.ts +25 -8
- package/lib/table/table.css +9 -2
- package/lib/table/table.d.ts +4 -0
- package/lib/table/table.less +7 -2
- package/lib/table/table.variable.css +9 -2
- package/lib/table/use-column.d.ts +2 -0
- package/lib/table/use-common.d.ts +1 -0
- package/lib/table-column/index.d.ts +12 -0
- package/package.json +1 -1
@@ -108,6 +108,7 @@ export declare const useInit: (props: TablePropTypes, targetColumns: ITableColum
|
|
108
108
|
initIndexData: (keepLocalAction?: boolean) => void;
|
109
109
|
updateIndexData: (selectedAll?: boolean) => void;
|
110
110
|
setRowExpand: (row: any, expand?: any) => void;
|
111
|
+
setAllRowExpand: (expand?: any) => void;
|
111
112
|
updateColGroups: (settings?: Settings) => void;
|
112
113
|
clearSelection: () => void;
|
113
114
|
toggleAllSelection: (checked?: any) => void;
|
@@ -98,6 +98,8 @@ declare const BkTableColumn: {
|
|
98
98
|
disabled?: boolean;
|
99
99
|
watchCellResize?: boolean;
|
100
100
|
mode?: "auto" | "static";
|
101
|
+
popoverOption?: any;
|
102
|
+
resizerWay?: import("../../table/src/props").ResizerWay;
|
101
103
|
});
|
102
104
|
};
|
103
105
|
type: import("vue-types").VueTypeDef<"none" | "selection" | "index" | "expand">;
|
@@ -159,6 +161,8 @@ declare const BkTableColumn: {
|
|
159
161
|
disabled?: boolean;
|
160
162
|
watchCellResize?: boolean;
|
161
163
|
mode?: "auto" | "static";
|
164
|
+
popoverOption?: any;
|
165
|
+
resizerWay?: import("../../table/src/props").ResizerWay;
|
162
166
|
};
|
163
167
|
resizable?: boolean;
|
164
168
|
colspan?: import("../../table/src/props").SpanFunctionString;
|
@@ -225,6 +229,8 @@ declare const BkTableColumn: {
|
|
225
229
|
disabled?: boolean;
|
226
230
|
watchCellResize?: boolean;
|
227
231
|
mode?: "auto" | "static";
|
232
|
+
popoverOption?: any;
|
233
|
+
resizerWay?: import("../../table/src/props").ResizerWay;
|
228
234
|
});
|
229
235
|
};
|
230
236
|
type: import("vue-types").VueTypeDef<"none" | "selection" | "index" | "expand">;
|
@@ -286,6 +292,8 @@ declare const BkTableColumn: {
|
|
286
292
|
disabled?: boolean;
|
287
293
|
watchCellResize?: boolean;
|
288
294
|
mode?: "auto" | "static";
|
295
|
+
popoverOption?: any;
|
296
|
+
resizerWay?: import("../../table/src/props").ResizerWay;
|
289
297
|
};
|
290
298
|
resizable?: boolean;
|
291
299
|
colspan?: import("../../table/src/props").SpanFunctionString;
|
@@ -325,6 +333,8 @@ declare const BkTableColumn: {
|
|
325
333
|
disabled?: boolean;
|
326
334
|
watchCellResize?: boolean;
|
327
335
|
mode?: "auto" | "static";
|
336
|
+
popoverOption?: any;
|
337
|
+
resizerWay?: import("../../table/src/props").ResizerWay;
|
328
338
|
});
|
329
339
|
};
|
330
340
|
type: import("vue-types").VueTypeDef<"none" | "selection" | "index" | "expand">;
|
@@ -386,6 +396,8 @@ declare const BkTableColumn: {
|
|
386
396
|
disabled?: boolean;
|
387
397
|
watchCellResize?: boolean;
|
388
398
|
mode?: "auto" | "static";
|
399
|
+
popoverOption?: any;
|
400
|
+
resizerWay?: import("../../table/src/props").ResizerWay;
|
389
401
|
};
|
390
402
|
resizable?: boolean;
|
391
403
|
colspan?: import("../../table/src/props").SpanFunctionString;
|