bkui-vue 1.0.3-beta.40 → 1.0.3-beta.41
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/index.cjs.js +20 -20
- package/dist/index.esm.js +839 -840
- package/dist/index.umd.js +20 -20
- package/lib/dialog/index.js +0 -1
- package/lib/directives/index.js +0 -1
- package/lib/modal/index.js +0 -1
- package/lib/search-select/index.js +0 -1
- package/lib/table/index.js +0 -1
- package/lib/timeline/index.d.ts +28 -28
- package/lib/timeline/index.js +8 -8
- package/lib/timeline/timeline.d.ts +16 -16
- package/package.json +1 -1
package/lib/dialog/index.js
CHANGED
@@ -938,7 +938,6 @@ function _isSlot(s) {
|
|
938
938
|
}
|
939
939
|
});
|
940
940
|
}
|
941
|
-
console.log('dialogSlot = ', dialogSlot);
|
942
941
|
var className = this.resolveClassName('dialog-wrapper ');
|
943
942
|
var bodyClass = "".concat(this.scrollable ? 'scroll-able' : '', " ").concat(this.multiInstance ? 'multi-instance' : '', " ").concat(this.hasFooter ? 'has-footer' : 'no-footer');
|
944
943
|
return (0,external_vue_namespaceObject.createVNode)(modal_namespaceObject["default"], (0,external_vue_namespaceObject.mergeProps)(this.$props, {
|
package/lib/directives/index.js
CHANGED
package/lib/modal/index.js
CHANGED
@@ -829,7 +829,6 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
829
829
|
_this$$slots$close2,
|
830
830
|
_this$$slots3,
|
831
831
|
_this = this;
|
832
|
-
console.log('this.$sltos = ', this.$slots);
|
833
832
|
var _usePrefix2 = (0,config_provider_namespaceObject.usePrefix)(),
|
834
833
|
resolveClassName = _usePrefix2.resolveClassName;
|
835
834
|
var maxHeight = this.maxHeight ? {
|
@@ -1527,7 +1527,6 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
1527
1527
|
var hasKeyword = text && ((_usingItem$value7 = usingItem.value) === null || _usingItem$value7 === void 0 ? void 0 : _usingItem$value7.keyInnerText) && text.replace("\xA0", " ").includes(usingItem.value.keyInnerText.replace("\xA0", " ").trim());
|
1528
1528
|
if (hasKeyword && outerText && (_usingItem$value$valu = usingItem.value.values) !== null && _usingItem$value$valu !== void 0 && _usingItem$value$valu.length) {
|
1529
1529
|
keyword.value = outerText;
|
1530
|
-
console.info('outerText', outerText);
|
1531
1530
|
debounceSetMenuList();
|
1532
1531
|
return;
|
1533
1532
|
}
|
package/lib/table/index.js
CHANGED
@@ -5485,7 +5485,6 @@ function head_filter_isSlot(s) {
|
|
5485
5485
|
var filterList = list.filter(function (l) {
|
5486
5486
|
return getRegExp(searchValue.value).test(l.value);
|
5487
5487
|
});
|
5488
|
-
console.log(' filterList: ', filterList);
|
5489
5488
|
return filterList;
|
5490
5489
|
});
|
5491
5490
|
var getRegExp = function getRegExp(val) {
|
package/lib/timeline/index.d.ts
CHANGED
@@ -2,13 +2,13 @@ declare const BkTimeline: {
|
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
3
3
|
list: import("vue-types").VueTypeDef<{
|
4
4
|
tag: string;
|
5
|
-
content:
|
5
|
+
content: object;
|
6
6
|
type: string;
|
7
7
|
size: string;
|
8
8
|
color: string;
|
9
|
-
icon:
|
10
|
-
filled: boolean;
|
11
|
-
border: boolean;
|
9
|
+
icon: any;
|
10
|
+
filled: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
11
|
+
border: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
12
12
|
}[]>;
|
13
13
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
14
14
|
default: boolean;
|
@@ -20,26 +20,26 @@ declare const BkTimeline: {
|
|
20
20
|
}, {
|
21
21
|
defaultTimelines: import("vue").ShallowRef<{
|
22
22
|
tag: string;
|
23
|
-
content:
|
23
|
+
content: object;
|
24
24
|
type: string;
|
25
25
|
size: string;
|
26
26
|
color: string;
|
27
|
-
icon:
|
28
|
-
filled: boolean;
|
29
|
-
border: boolean;
|
27
|
+
icon: any;
|
28
|
+
filled: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
29
|
+
border: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
30
30
|
}[]>;
|
31
31
|
handleTitleSelect: (item: any) => void;
|
32
32
|
resolveClassName: (cls: string) => string;
|
33
33
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
34
34
|
list: import("vue-types").VueTypeDef<{
|
35
35
|
tag: string;
|
36
|
-
content:
|
36
|
+
content: object;
|
37
37
|
type: string;
|
38
38
|
size: string;
|
39
39
|
color: string;
|
40
|
-
icon:
|
41
|
-
filled: boolean;
|
42
|
-
border: boolean;
|
40
|
+
icon: any;
|
41
|
+
filled: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
42
|
+
border: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
43
43
|
}[]>;
|
44
44
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
45
45
|
default: boolean;
|
@@ -60,13 +60,13 @@ declare const BkTimeline: {
|
|
60
60
|
}, Readonly<import("vue").ExtractPropTypes<{
|
61
61
|
list: import("vue-types").VueTypeDef<{
|
62
62
|
tag: string;
|
63
|
-
content:
|
63
|
+
content: object;
|
64
64
|
type: string;
|
65
65
|
size: string;
|
66
66
|
color: string;
|
67
|
-
icon:
|
68
|
-
filled: boolean;
|
69
|
-
border: boolean;
|
67
|
+
icon: any;
|
68
|
+
filled: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
69
|
+
border: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
70
70
|
}[]>;
|
71
71
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
72
72
|
default: boolean;
|
@@ -78,13 +78,13 @@ declare const BkTimeline: {
|
|
78
78
|
}, {
|
79
79
|
defaultTimelines: import("vue").ShallowRef<{
|
80
80
|
tag: string;
|
81
|
-
content:
|
81
|
+
content: object;
|
82
82
|
type: string;
|
83
83
|
size: string;
|
84
84
|
color: string;
|
85
|
-
icon:
|
86
|
-
filled: boolean;
|
87
|
-
border: boolean;
|
85
|
+
icon: any;
|
86
|
+
filled: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
87
|
+
border: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
88
88
|
}[]>;
|
89
89
|
handleTitleSelect: (item: any) => void;
|
90
90
|
resolveClassName: (cls: string) => string;
|
@@ -97,13 +97,13 @@ declare const BkTimeline: {
|
|
97
97
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
98
98
|
list: import("vue-types").VueTypeDef<{
|
99
99
|
tag: string;
|
100
|
-
content:
|
100
|
+
content: object;
|
101
101
|
type: string;
|
102
102
|
size: string;
|
103
103
|
color: string;
|
104
|
-
icon:
|
105
|
-
filled: boolean;
|
106
|
-
border: boolean;
|
104
|
+
icon: any;
|
105
|
+
filled: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
106
|
+
border: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
107
107
|
}[]>;
|
108
108
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
109
109
|
default: boolean;
|
@@ -115,13 +115,13 @@ declare const BkTimeline: {
|
|
115
115
|
}, {
|
116
116
|
defaultTimelines: import("vue").ShallowRef<{
|
117
117
|
tag: string;
|
118
|
-
content:
|
118
|
+
content: object;
|
119
119
|
type: string;
|
120
120
|
size: string;
|
121
121
|
color: string;
|
122
|
-
icon:
|
123
|
-
filled: boolean;
|
124
|
-
border: boolean;
|
122
|
+
icon: any;
|
123
|
+
filled: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
124
|
+
border: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
125
125
|
}[]>;
|
126
126
|
handleTitleSelect: (item: any) => void;
|
127
127
|
resolveClassName: (cls: string) => string;
|
package/lib/timeline/index.js
CHANGED
@@ -86,14 +86,14 @@ const config_provider_namespaceObject = config_provider_x({ ["usePrefix"]: () =>
|
|
86
86
|
|
87
87
|
var timelineProps = {
|
88
88
|
list: shared_namespaceObject.PropTypes.arrayOf(shared_namespaceObject.PropTypes.shape({
|
89
|
-
tag:
|
90
|
-
content:
|
91
|
-
type:
|
92
|
-
size:
|
93
|
-
color:
|
94
|
-
icon:
|
95
|
-
filled:
|
96
|
-
border:
|
89
|
+
tag: shared_namespaceObject.PropTypes.string,
|
90
|
+
content: shared_namespaceObject.PropTypes.oneOfType([shared_namespaceObject.PropTypes.string, shared_namespaceObject.PropTypes.object]),
|
91
|
+
type: shared_namespaceObject.PropTypes.string,
|
92
|
+
size: shared_namespaceObject.PropTypes.string,
|
93
|
+
color: shared_namespaceObject.PropTypes.string,
|
94
|
+
icon: shared_namespaceObject.PropTypes.func,
|
95
|
+
filled: shared_namespaceObject.PropTypes.bool,
|
96
|
+
border: shared_namespaceObject.PropTypes.bool
|
97
97
|
}).isRequired),
|
98
98
|
titleAble: shared_namespaceObject.PropTypes.bool.def(false)
|
99
99
|
};
|
@@ -27,13 +27,13 @@ import { ExtractPropTypes } from 'vue';
|
|
27
27
|
declare const timelineProps: {
|
28
28
|
list: import("vue-types").VueTypeDef<{
|
29
29
|
tag: string;
|
30
|
-
content:
|
30
|
+
content: object;
|
31
31
|
type: string;
|
32
32
|
size: string;
|
33
33
|
color: string;
|
34
|
-
icon:
|
35
|
-
filled: boolean;
|
36
|
-
border: boolean;
|
34
|
+
icon: any;
|
35
|
+
filled: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
36
|
+
border: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
37
37
|
}[]>;
|
38
38
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
39
39
|
default: boolean;
|
@@ -45,13 +45,13 @@ export type TimelinePropTypes = Readonly<ExtractPropTypes<typeof timelineProps>>
|
|
45
45
|
declare const _default: import("vue").DefineComponent<{
|
46
46
|
list: import("vue-types").VueTypeDef<{
|
47
47
|
tag: string;
|
48
|
-
content:
|
48
|
+
content: object;
|
49
49
|
type: string;
|
50
50
|
size: string;
|
51
51
|
color: string;
|
52
|
-
icon:
|
53
|
-
filled: boolean;
|
54
|
-
border: boolean;
|
52
|
+
icon: any;
|
53
|
+
filled: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
54
|
+
border: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
55
55
|
}[]>;
|
56
56
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
57
57
|
default: boolean;
|
@@ -61,26 +61,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
61
61
|
}, {
|
62
62
|
defaultTimelines: import("vue").ShallowRef<{
|
63
63
|
tag: string;
|
64
|
-
content:
|
64
|
+
content: object;
|
65
65
|
type: string;
|
66
66
|
size: string;
|
67
67
|
color: string;
|
68
|
-
icon:
|
69
|
-
filled: boolean;
|
70
|
-
border: boolean;
|
68
|
+
icon: any;
|
69
|
+
filled: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
70
|
+
border: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
71
71
|
}[]>;
|
72
72
|
handleTitleSelect: (item: any) => void;
|
73
73
|
resolveClassName: (cls: string) => string;
|
74
74
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], "select", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
75
75
|
list: import("vue-types").VueTypeDef<{
|
76
76
|
tag: string;
|
77
|
-
content:
|
77
|
+
content: object;
|
78
78
|
type: string;
|
79
79
|
size: string;
|
80
80
|
color: string;
|
81
|
-
icon:
|
82
|
-
filled: boolean;
|
83
|
-
border: boolean;
|
81
|
+
icon: any;
|
82
|
+
filled: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
83
|
+
border: (boolean | object | (() => boolean) | ((props: Record<string, unknown>) => boolean)) & boolean;
|
84
84
|
}[]>;
|
85
85
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
86
86
|
default: boolean;
|