bkui-vue 0.0.1-beta.437 → 0.0.1-beta.438
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/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/table/components/table-column.d.ts +2 -2
- package/lib/table/index.d.ts +6 -6
- package/lib/table/props.d.ts +2 -2
- package/lib/table/table.css +4 -1
- package/lib/table/table.less +2 -1
- package/lib/table/table.variable.css +4 -1
- package/lib/table-column/index.d.ts +6 -6
- package/package.json +1 -1
@@ -112,8 +112,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
112
112
|
valueOf: () => number;
|
113
113
|
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
114
114
|
};
|
115
|
-
className
|
116
|
-
align
|
115
|
+
className?: string | Function;
|
116
|
+
align?: string;
|
117
117
|
prop?: string | Function;
|
118
118
|
index?: number;
|
119
119
|
};
|
package/lib/table/index.d.ts
CHANGED
@@ -1051,8 +1051,8 @@ declare const BkColumn: {
|
|
1051
1051
|
valueOf: () => number;
|
1052
1052
|
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1053
1053
|
};
|
1054
|
-
className
|
1055
|
-
align
|
1054
|
+
className?: string | Function;
|
1055
|
+
align?: string;
|
1056
1056
|
prop?: string | Function;
|
1057
1057
|
index?: number;
|
1058
1058
|
};
|
@@ -1209,8 +1209,8 @@ declare const BkColumn: {
|
|
1209
1209
|
valueOf: () => number;
|
1210
1210
|
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1211
1211
|
};
|
1212
|
-
className
|
1213
|
-
align
|
1212
|
+
className?: string | Function;
|
1213
|
+
align?: string;
|
1214
1214
|
prop?: string | Function;
|
1215
1215
|
index?: number;
|
1216
1216
|
};
|
@@ -1331,8 +1331,8 @@ declare const BkColumn: {
|
|
1331
1331
|
valueOf: () => number;
|
1332
1332
|
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1333
1333
|
};
|
1334
|
-
className
|
1335
|
-
align
|
1334
|
+
className?: string | Function;
|
1335
|
+
align?: string;
|
1336
1336
|
prop?: string | Function;
|
1337
1337
|
index?: number;
|
1338
1338
|
};
|
package/lib/table/props.d.ts
CHANGED
@@ -442,8 +442,8 @@ export declare type Column = {
|
|
442
442
|
} | boolean | string;
|
443
443
|
colspan?: Function | Number;
|
444
444
|
rowspan?: Function | Number;
|
445
|
-
className
|
446
|
-
align
|
445
|
+
className?: string | Function;
|
446
|
+
align?: string;
|
447
447
|
};
|
448
448
|
export declare type Thead = {
|
449
449
|
height?: Number;
|
package/lib/table/table.css
CHANGED
@@ -1163,10 +1163,13 @@
|
|
1163
1163
|
.bk-table .bk-table-body table .right .cell {
|
1164
1164
|
justify-content: end;
|
1165
1165
|
}
|
1166
|
+
.bk-table .bk-table-head table thead,
|
1167
|
+
.bk-table .bk-table-body table thead {
|
1168
|
+
background-color: #fafbfd;
|
1169
|
+
}
|
1166
1170
|
.bk-table .bk-table-head table thead th,
|
1167
1171
|
.bk-table .bk-table-body table thead th {
|
1168
1172
|
font-weight: 400;
|
1169
|
-
background-color: #fafbfd;
|
1170
1173
|
}
|
1171
1174
|
.bk-table .bk-table-head table thead th .cell,
|
1172
1175
|
.bk-table .bk-table-body table thead th .cell {
|
package/lib/table/table.less
CHANGED
@@ -1285,10 +1285,13 @@
|
|
1285
1285
|
.bk-table .bk-table-body table .right .cell {
|
1286
1286
|
justify-content: end;
|
1287
1287
|
}
|
1288
|
+
.bk-table .bk-table-head table thead,
|
1289
|
+
.bk-table .bk-table-body table thead {
|
1290
|
+
background-color: #fafbfd;
|
1291
|
+
}
|
1288
1292
|
.bk-table .bk-table-head table thead th,
|
1289
1293
|
.bk-table .bk-table-body table thead th {
|
1290
1294
|
font-weight: 400;
|
1291
|
-
background-color: #fafbfd;
|
1292
1295
|
}
|
1293
1296
|
.bk-table .bk-table-head table thead th .cell,
|
1294
1297
|
.bk-table .bk-table-body table thead th .cell {
|
@@ -208,8 +208,8 @@ declare const BkTableColumn: {
|
|
208
208
|
valueOf: () => number;
|
209
209
|
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
210
210
|
};
|
211
|
-
className
|
212
|
-
align
|
211
|
+
className?: string | Function;
|
212
|
+
align?: string;
|
213
213
|
prop?: string | Function;
|
214
214
|
index?: number;
|
215
215
|
};
|
@@ -366,8 +366,8 @@ declare const BkTableColumn: {
|
|
366
366
|
valueOf: () => number;
|
367
367
|
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
368
368
|
};
|
369
|
-
className
|
370
|
-
align
|
369
|
+
className?: string | Function;
|
370
|
+
align?: string;
|
371
371
|
prop?: string | Function;
|
372
372
|
index?: number;
|
373
373
|
};
|
@@ -488,8 +488,8 @@ declare const BkTableColumn: {
|
|
488
488
|
valueOf: () => number;
|
489
489
|
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
490
490
|
};
|
491
|
-
className
|
492
|
-
align
|
491
|
+
className?: string | Function;
|
492
|
+
align?: string;
|
493
493
|
prop?: string | Function;
|
494
494
|
index?: number;
|
495
495
|
};
|