bkui-vue 0.0.1-beta.343 → 0.0.1-beta.345

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 (47) hide show
  1. package/dist/index.cjs.js +40 -34
  2. package/dist/index.esm.js +164 -60
  3. package/dist/index.umd.js +39 -33
  4. package/dist/style.css +1 -1
  5. package/dist/style.variable.css +1 -1
  6. package/lib/breadcrumb/index.js +1 -1
  7. package/lib/button/index.js +1 -1
  8. package/lib/checkbox/checkbox.d.ts +4 -10
  9. package/lib/checkbox/common.d.ts +1 -0
  10. package/lib/checkbox/index.d.ts +8 -16
  11. package/lib/checkbox/index.js +1 -1
  12. package/lib/collapse/collapse-panel.d.ts +2 -7
  13. package/lib/collapse/index.d.ts +2 -7
  14. package/lib/collapse/index.js +1 -1
  15. package/lib/collapse/props.d.ts +1 -3
  16. package/lib/dialog/dialog.d.ts +2 -2
  17. package/lib/dialog/index.d.ts +4 -4
  18. package/lib/dialog/props.d.ts +1 -1
  19. package/lib/exception/index.js +1 -1
  20. package/lib/form/form.css +0 -1
  21. package/lib/form/form.less +0 -1
  22. package/lib/form/form.variable.css +0 -1
  23. package/lib/modal/index.d.ts +5 -5
  24. package/lib/modal/index.js +1 -1
  25. package/lib/modal/modal.d.ts +2 -2
  26. package/lib/modal/props.mixin.d.ts +1 -2
  27. package/lib/shared/index.js +1 -1
  28. package/lib/shared/utils.d.ts +6 -0
  29. package/lib/sideslider/index.d.ts +4 -4
  30. package/lib/sideslider/sideslider.d.ts +2 -2
  31. package/lib/tab/index.d.ts +2 -2
  32. package/lib/tab/index.js +1 -1
  33. package/lib/tab/props.d.ts +1 -2
  34. package/lib/tab/tab-panel.d.ts +2 -2
  35. package/lib/tab/tab.css +1 -1
  36. package/lib/tab/tab.less +26 -28
  37. package/lib/tab/tab.variable.css +1 -1
  38. package/lib/table/index.js +1 -1
  39. package/lib/table/table.css +6 -0
  40. package/lib/table/table.less +4 -0
  41. package/lib/table/table.variable.css +6 -0
  42. package/lib/tag-input/index.d.ts +20 -1
  43. package/lib/tag-input/index.js +1 -1
  44. package/lib/tag-input/tag-input.d.ts +9 -0
  45. package/lib/tag-input/tag-props.d.ts +5 -0
  46. package/lib/tag-input/tag-render.d.ts +30 -1
  47. package/package.json +1 -1
@@ -1,3 +1,5 @@
1
+ import { PropType } from 'vue';
2
+ import { IOptions } from '../directives/src/tooltips';
1
3
  declare const _default: import("vue").DefineComponent<{
2
4
  node: import("vue-types").VueTypeValidableDef<{
3
5
  [key: string]: any;
@@ -12,7 +14,24 @@ declare const _default: import("vue").DefineComponent<{
12
14
  tpl: {
13
15
  type: FunctionConstructor;
14
16
  };
15
- }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
17
+ hasTips: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ };
21
+ tagOverflowTips: {
22
+ type: PropType<Partial<IOptions>>;
23
+ default: () => {};
24
+ };
25
+ }, {
26
+ overflowTips: import("vue").ComputedRef<{
27
+ boundary: string;
28
+ theme: string;
29
+ distance: number;
30
+ content: any;
31
+ disabled: boolean;
32
+ }>;
33
+ tagRef: import("vue").Ref<any>;
34
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
16
35
  node: import("vue-types").VueTypeValidableDef<{
17
36
  [key: string]: any;
18
37
  }> & {
@@ -26,10 +45,20 @@ declare const _default: import("vue").DefineComponent<{
26
45
  tpl: {
27
46
  type: FunctionConstructor;
28
47
  };
48
+ hasTips: {
49
+ type: BooleanConstructor;
50
+ default: boolean;
51
+ };
52
+ tagOverflowTips: {
53
+ type: PropType<Partial<IOptions>>;
54
+ default: () => {};
55
+ };
29
56
  }>>, {
30
57
  displayKey: string;
58
+ tagOverflowTips: {};
31
59
  node: {
32
60
  [key: string]: any;
33
61
  };
62
+ hasTips: boolean;
34
63
  }>;
35
64
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "0.0.1-beta.343",
3
+ "version": "0.0.1-beta.345",
4
4
  "workspaces": {
5
5
  "packages": [
6
6
  "packages/!(**.bak)*",