bkui-vue 1.0.2 → 1.0.3-beta.10
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/README.md +1 -0
- package/dist/index.cjs.js +61 -61
- package/dist/index.esm.js +11749 -11679
- package/dist/index.umd.js +61 -61
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/affix/index.js +1 -0
- package/lib/alert/index.js +1 -0
- package/lib/animate-number/index.js +1 -0
- package/lib/backtop/index.js +1 -0
- package/lib/badge/index.js +1 -0
- package/lib/breadcrumb/index.js +1 -0
- package/lib/button/index.js +1 -0
- package/lib/card/index.js +1 -0
- package/lib/cascader/index.js +1 -0
- package/lib/checkbox/index.js +1 -0
- package/lib/code-diff/index.js +1 -0
- package/lib/collapse/index.js +1 -0
- package/lib/collapse-transition/index.js +1 -0
- package/lib/color-picker/index.js +1 -0
- package/lib/components.js +0 -4
- package/lib/config-provider/index.js +1 -0
- package/lib/container/index.js +1 -0
- package/lib/date-picker/index.js +1 -0
- package/lib/dialog/index.js +1 -0
- package/lib/directives/index.js +1 -0
- package/lib/dist.index.js +0 -1
- package/lib/divider/index.js +1 -0
- package/lib/dropdown/index.js +1 -0
- package/lib/exception/index.js +1 -0
- package/lib/fixed-navbar/index.js +1 -0
- package/lib/form/form.css +1 -0
- package/lib/form/form.less +2 -0
- package/lib/form/form.variable.css +1 -0
- package/lib/form/index.js +1 -0
- package/lib/hooks.js +1 -8
- package/lib/icon/index.js +1 -0
- package/lib/image/index.js +1 -0
- package/lib/index.js +0 -1
- package/lib/info-box/index.js +1 -0
- package/lib/input/index.js +1 -0
- package/lib/link/index.js +1 -0
- package/lib/loading/index.js +1 -0
- package/lib/locale/index.js +1 -0
- package/lib/menu/index.js +1 -0
- package/lib/message/index.js +1 -0
- package/lib/modal/index.js +1 -0
- package/lib/navigation/index.js +1 -0
- package/lib/notify/index.js +1 -0
- package/lib/overflow-title/index.js +1 -0
- package/lib/pagination/index.js +1 -1
- package/lib/plugin-popover/index.js +11 -5
- package/lib/plugins/index.js +1 -0
- package/lib/pop-confirm/index.js +1 -0
- package/lib/popover/index.js +11 -5
- package/lib/popover2/index.js +1 -0
- package/lib/preset.d.ts +2 -2
- package/lib/preset.js +14 -20
- package/lib/process/index.js +1 -0
- package/lib/progress/index.js +1 -0
- package/lib/radio/index.js +1 -0
- package/lib/rate/index.js +1 -0
- package/lib/resize-layout/index.js +1 -0
- package/lib/search-select/index.js +1 -0
- package/lib/select/index.js +1 -0
- package/lib/shared/index.js +1 -0
- package/lib/sideslider/index.js +1 -0
- package/lib/slider/index.js +1 -0
- package/lib/steps/index.js +1 -0
- package/lib/styles/reset.css +3 -1
- package/lib/styles/reset.less +3 -1
- package/lib/styles/reset.variable.css +3 -1
- package/lib/swiper/index.js +1 -0
- package/lib/switcher/index.js +1 -0
- package/lib/tab/index.js +1 -0
- package/lib/table/index.d.ts +15 -0
- package/lib/table/index.js +386 -245
- package/lib/table/plugins/head-sort.d.ts +7 -0
- package/lib/table/plugins/use-draggable.d.ts +2 -2
- package/lib/table/plugins/use-pagination.d.ts +2 -1
- package/lib/table/props.d.ts +9 -0
- package/lib/table/table.css +15 -16
- package/lib/table/table.d.ts +7 -0
- package/lib/table/table.less +27 -14
- package/lib/table/table.variable.css +15 -16
- package/lib/table/use-attributes.d.ts +40 -1
- package/lib/table/use-common.d.ts +1 -0
- package/lib/table/utils.d.ts +5 -4
- package/lib/table-column/index.js +11 -0
- package/lib/tag/index.js +1 -0
- package/lib/tag-input/index.js +1 -0
- package/lib/time-picker/index.js +1 -0
- package/lib/timeline/index.js +1 -0
- package/lib/transfer/index.js +1 -0
- package/lib/tree/index.js +1 -0
- package/lib/upload/index.js +1 -0
- package/lib/virtual-render/index.js +1 -0
- package/package.json +4 -3
package/lib/swiper/index.js
CHANGED
package/lib/switcher/index.js
CHANGED
package/lib/tab/index.js
CHANGED
package/lib/table/index.d.ts
CHANGED
@@ -42,6 +42,9 @@ declare const BkTable: {
|
|
42
42
|
} & {
|
43
43
|
default: boolean;
|
44
44
|
};
|
45
|
+
sortValFormat: import("vue-types").VueTypeDef<any[]> & {
|
46
|
+
default: () => any[];
|
47
|
+
};
|
45
48
|
thead: import("vue-types").VueTypeDef<import("./props").Thead> & {
|
46
49
|
default: () => import("./props").Thead;
|
47
50
|
};
|
@@ -363,6 +366,9 @@ declare const BkTable: {
|
|
363
366
|
} & {
|
364
367
|
default: boolean;
|
365
368
|
};
|
369
|
+
sortValFormat: import("vue-types").VueTypeDef<any[]> & {
|
370
|
+
default: () => any[];
|
371
|
+
};
|
366
372
|
thead: import("vue-types").VueTypeDef<import("./props").Thead> & {
|
367
373
|
default: () => import("./props").Thead;
|
368
374
|
};
|
@@ -586,6 +592,7 @@ declare const BkTable: {
|
|
586
592
|
stripe: boolean;
|
587
593
|
rowHeight: import("./props").RowHeightFunctionNumber;
|
588
594
|
showHead: boolean;
|
595
|
+
sortValFormat: any[];
|
589
596
|
virtualEnabled: boolean;
|
590
597
|
paginationHeight: number;
|
591
598
|
remotePagination: boolean;
|
@@ -650,6 +657,9 @@ declare const BkTable: {
|
|
650
657
|
} & {
|
651
658
|
default: boolean;
|
652
659
|
};
|
660
|
+
sortValFormat: import("vue-types").VueTypeDef<any[]> & {
|
661
|
+
default: () => any[];
|
662
|
+
};
|
653
663
|
thead: import("vue-types").VueTypeDef<import("./props").Thead> & {
|
654
664
|
default: () => import("./props").Thead;
|
655
665
|
};
|
@@ -873,6 +883,7 @@ declare const BkTable: {
|
|
873
883
|
stripe: boolean;
|
874
884
|
rowHeight: import("./props").RowHeightFunctionNumber;
|
875
885
|
showHead: boolean;
|
886
|
+
sortValFormat: any[];
|
876
887
|
virtualEnabled: boolean;
|
877
888
|
paginationHeight: number;
|
878
889
|
remotePagination: boolean;
|
@@ -934,6 +945,9 @@ declare const BkTable: {
|
|
934
945
|
} & {
|
935
946
|
default: boolean;
|
936
947
|
};
|
948
|
+
sortValFormat: import("vue-types").VueTypeDef<any[]> & {
|
949
|
+
default: () => any[];
|
950
|
+
};
|
937
951
|
thead: import("vue-types").VueTypeDef<import("./props").Thead> & {
|
938
952
|
default: () => import("./props").Thead;
|
939
953
|
};
|
@@ -1240,6 +1254,7 @@ declare const BkTable: {
|
|
1240
1254
|
stripe: boolean;
|
1241
1255
|
rowHeight: import("./props").RowHeightFunctionNumber;
|
1242
1256
|
showHead: boolean;
|
1257
|
+
sortValFormat: any[];
|
1243
1258
|
virtualEnabled: boolean;
|
1244
1259
|
paginationHeight: number;
|
1245
1260
|
remotePagination: boolean;
|