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.
Files changed (98) hide show
  1. package/README.md +1 -0
  2. package/dist/index.cjs.js +61 -61
  3. package/dist/index.esm.js +11749 -11679
  4. package/dist/index.umd.js +61 -61
  5. package/dist/style.css +1 -1
  6. package/dist/style.variable.css +1 -1
  7. package/lib/affix/index.js +1 -0
  8. package/lib/alert/index.js +1 -0
  9. package/lib/animate-number/index.js +1 -0
  10. package/lib/backtop/index.js +1 -0
  11. package/lib/badge/index.js +1 -0
  12. package/lib/breadcrumb/index.js +1 -0
  13. package/lib/button/index.js +1 -0
  14. package/lib/card/index.js +1 -0
  15. package/lib/cascader/index.js +1 -0
  16. package/lib/checkbox/index.js +1 -0
  17. package/lib/code-diff/index.js +1 -0
  18. package/lib/collapse/index.js +1 -0
  19. package/lib/collapse-transition/index.js +1 -0
  20. package/lib/color-picker/index.js +1 -0
  21. package/lib/components.js +0 -4
  22. package/lib/config-provider/index.js +1 -0
  23. package/lib/container/index.js +1 -0
  24. package/lib/date-picker/index.js +1 -0
  25. package/lib/dialog/index.js +1 -0
  26. package/lib/directives/index.js +1 -0
  27. package/lib/dist.index.js +0 -1
  28. package/lib/divider/index.js +1 -0
  29. package/lib/dropdown/index.js +1 -0
  30. package/lib/exception/index.js +1 -0
  31. package/lib/fixed-navbar/index.js +1 -0
  32. package/lib/form/form.css +1 -0
  33. package/lib/form/form.less +2 -0
  34. package/lib/form/form.variable.css +1 -0
  35. package/lib/form/index.js +1 -0
  36. package/lib/hooks.js +1 -8
  37. package/lib/icon/index.js +1 -0
  38. package/lib/image/index.js +1 -0
  39. package/lib/index.js +0 -1
  40. package/lib/info-box/index.js +1 -0
  41. package/lib/input/index.js +1 -0
  42. package/lib/link/index.js +1 -0
  43. package/lib/loading/index.js +1 -0
  44. package/lib/locale/index.js +1 -0
  45. package/lib/menu/index.js +1 -0
  46. package/lib/message/index.js +1 -0
  47. package/lib/modal/index.js +1 -0
  48. package/lib/navigation/index.js +1 -0
  49. package/lib/notify/index.js +1 -0
  50. package/lib/overflow-title/index.js +1 -0
  51. package/lib/pagination/index.js +1 -1
  52. package/lib/plugin-popover/index.js +11 -5
  53. package/lib/plugins/index.js +1 -0
  54. package/lib/pop-confirm/index.js +1 -0
  55. package/lib/popover/index.js +11 -5
  56. package/lib/popover2/index.js +1 -0
  57. package/lib/preset.d.ts +2 -2
  58. package/lib/preset.js +14 -20
  59. package/lib/process/index.js +1 -0
  60. package/lib/progress/index.js +1 -0
  61. package/lib/radio/index.js +1 -0
  62. package/lib/rate/index.js +1 -0
  63. package/lib/resize-layout/index.js +1 -0
  64. package/lib/search-select/index.js +1 -0
  65. package/lib/select/index.js +1 -0
  66. package/lib/shared/index.js +1 -0
  67. package/lib/sideslider/index.js +1 -0
  68. package/lib/slider/index.js +1 -0
  69. package/lib/steps/index.js +1 -0
  70. package/lib/styles/reset.css +3 -1
  71. package/lib/styles/reset.less +3 -1
  72. package/lib/styles/reset.variable.css +3 -1
  73. package/lib/swiper/index.js +1 -0
  74. package/lib/switcher/index.js +1 -0
  75. package/lib/tab/index.js +1 -0
  76. package/lib/table/index.d.ts +15 -0
  77. package/lib/table/index.js +386 -245
  78. package/lib/table/plugins/head-sort.d.ts +7 -0
  79. package/lib/table/plugins/use-draggable.d.ts +2 -2
  80. package/lib/table/plugins/use-pagination.d.ts +2 -1
  81. package/lib/table/props.d.ts +9 -0
  82. package/lib/table/table.css +15 -16
  83. package/lib/table/table.d.ts +7 -0
  84. package/lib/table/table.less +27 -14
  85. package/lib/table/table.variable.css +15 -16
  86. package/lib/table/use-attributes.d.ts +40 -1
  87. package/lib/table/use-common.d.ts +1 -0
  88. package/lib/table/utils.d.ts +5 -4
  89. package/lib/table-column/index.js +11 -0
  90. package/lib/tag/index.js +1 -0
  91. package/lib/tag-input/index.js +1 -0
  92. package/lib/time-picker/index.js +1 -0
  93. package/lib/timeline/index.js +1 -0
  94. package/lib/transfer/index.js +1 -0
  95. package/lib/tree/index.js +1 -0
  96. package/lib/upload/index.js +1 -0
  97. package/lib/virtual-render/index.js +1 -0
  98. package/package.json +4 -3
@@ -1,3 +1,4 @@
1
+ import "../styles/reset.css";
1
2
  import "./swiper.less";
2
3
  import * as __WEBPACK_EXTERNAL_MODULE_bkui_vue_lib_shared_edbdfb03__ from "../shared";
3
4
  import * as __WEBPACK_EXTERNAL_MODULE_vue__ from "vue";
@@ -1,3 +1,4 @@
1
+ import "../styles/reset.css";
1
2
  import "./switcher.less";
2
3
  import * as __WEBPACK_EXTERNAL_MODULE_bkui_vue_lib_shared_edbdfb03__ from "../shared";
3
4
  import * as __WEBPACK_EXTERNAL_MODULE_vue__ from "vue";
package/lib/tab/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ import "../styles/reset.css";
1
2
  import "./tab.less";
2
3
  import * as __WEBPACK_EXTERNAL_MODULE_bkui_vue_lib_shared_edbdfb03__ from "../shared";
3
4
  import * as __WEBPACK_EXTERNAL_MODULE_vue_types_22de060a__ from "vue-types";
@@ -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;