z-crud-table 0.0.70 → 0.0.71

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.
@@ -1,6 +1,14 @@
1
1
  import { PropType } from 'vue';
2
2
 
3
3
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
+ /**
5
+ * @description 指定哪一列的字段作为“查看详情”的链接入口(传入 prop 的名称)
6
+ * @type {String}
7
+ */
8
+ viewLinkColumn: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ };
4
12
  /**
5
13
  * @description 组件的主题风格
6
14
  * @type {'default' | 'large-screen'}
@@ -248,6 +256,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
248
256
  "open-dialog": (...args: any[]) => void;
249
257
  "update:initialSearchForm": (...args: any[]) => void;
250
258
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
259
+ /**
260
+ * @description 指定哪一列的字段作为“查看详情”的链接入口(传入 prop 的名称)
261
+ * @type {String}
262
+ */
263
+ viewLinkColumn: {
264
+ type: StringConstructor;
265
+ default: string;
266
+ };
251
267
  /**
252
268
  * @description 组件的主题风格
253
269
  * @type {'default' | 'large-screen'}
@@ -489,6 +505,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
489
505
  "onUpdate:initialSearchForm"?: ((...args: any[]) => any) | undefined;
490
506
  }>, {
491
507
  customClass: string;
508
+ viewLinkColumn: string;
492
509
  theme: "default" | "large-screen";
493
510
  loadingText: string;
494
511
  loadingBackground: string;