lew-ui 2.6.7 → 2.6.8

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.
@@ -154,8 +154,8 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
154
154
  labelWidth: string | number;
155
155
  id: string;
156
156
  dataSource: Record<string, any>;
157
+ bordered: boolean;
157
158
  labelX: import('../..').TextTrimAlignment;
158
159
  valueX: import('../..').TextTrimAlignment;
159
- bordered: boolean;
160
160
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
161
161
  export default _default;
@@ -174,9 +174,9 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
174
174
  id: string;
175
175
  gridArea: string;
176
176
  dataSource: Record<string, any>;
177
+ bordered: boolean;
177
178
  labelX: TextTrimAlignment;
178
179
  valueX: TextTrimAlignment;
179
- bordered: boolean;
180
180
  customRender: (value: any) => any;
181
181
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
182
182
  export default _default;
@@ -1,14 +1,14 @@
1
- declare function __VLS_template(): Partial<Record<string, (_: {
1
+ declare function __VLS_template(): Partial<Record<any, (_: {
2
2
  row: Record<string, any>;
3
- column: import('../../..').TableColumn;
3
+ column: any;
4
4
  index: number;
5
- }) => any>> & Partial<Record<string, (_: {
5
+ }) => any>> & Partial<Record<any, (_: {
6
6
  row: Record<string, any>;
7
- column: import('../../..').TableColumn;
7
+ column: any;
8
8
  index: number;
9
- }) => any>> & Partial<Record<string, (_: {
9
+ }) => any>> & Partial<Record<any, (_: {
10
10
  row: Record<string, any>;
11
- column: import('../../..').TableColumn;
11
+ column: any;
12
12
  index: number;
13
13
  }) => any>> & {
14
14
  "table-header"?(_: {}): any;
@@ -24,6 +24,11 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
24
24
  description: string;
25
25
  validator: (value: import('../../..').TableColumn[]) => boolean;
26
26
  };
27
+ bordered: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ description: string;
31
+ };
27
32
  dataSource: {
28
33
  type: PropType<Record<string, any>[]>;
29
34
  default: () => never[];
@@ -70,6 +75,11 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
70
75
  description: string;
71
76
  validator: (value: import('../../..').TableColumn[]) => boolean;
72
77
  };
78
+ bordered: {
79
+ type: BooleanConstructor;
80
+ default: boolean;
81
+ description: string;
82
+ };
73
83
  dataSource: {
74
84
  type: PropType<Record<string, any>[]>;
75
85
  default: () => never[];
@@ -115,6 +125,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
115
125
  dataSource: Record<string, any>[];
116
126
  checkable: boolean;
117
127
  rowKey: string;
128
+ bordered: boolean;
118
129
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
119
130
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
120
131
  export default _default;
@@ -26,6 +26,11 @@ export declare const tableProps: {
26
26
  description: string;
27
27
  validator: (value: TableColumn[]) => boolean;
28
28
  };
29
+ bordered: {
30
+ type: BooleanConstructor;
31
+ default: boolean;
32
+ description: string;
33
+ };
29
34
  dataSource: {
30
35
  type: PropType<Record<string, any>[]>;
31
36
  default: () => never[];