bkui-vue 0.0.1-beta.195 → 0.0.1-beta.197
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 +62 -60
- package/dist/index.esm.js +1552 -198
- package/dist/index.umd.js +62 -60
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/components.d.ts +1 -0
- package/lib/components.js +1 -1
- package/lib/icon/index.js +1 -1
- package/lib/process/index.d.ts +2 -2
- package/lib/process/index.js +1 -1
- package/lib/process/process.css +13 -0
- package/lib/process/process.less +17 -0
- package/lib/process/process.variable.css +13 -0
- package/lib/search-select/index.d.ts +681 -0
- package/lib/search-select/index.js +1 -0
- package/lib/search-select/input.d.ts +85 -0
- package/lib/search-select/menu.css +145 -0
- package/lib/search-select/menu.d.ts +83 -0
- package/lib/search-select/menu.less +134 -0
- package/lib/search-select/menu.variable.css +145 -0
- package/lib/search-select/search-select.css +426 -0
- package/lib/search-select/search-select.d.ts +273 -0
- package/lib/search-select/search-select.less +227 -0
- package/lib/search-select/search-select.variable.css +539 -0
- package/lib/search-select/selected.css +21 -0
- package/lib/search-select/selected.d.ts +137 -0
- package/lib/search-select/selected.less +24 -0
- package/lib/search-select/selected.variable.css +21 -0
- package/lib/search-select/utils.d.ts +79 -0
- package/lib/styles/index.d.ts +1 -0
- package/lib/styles/mixins/animate.css +21 -0
- package/lib/tag-input/common.d.ts +4 -1
- package/lib/tag-input/index.d.ts +353 -377
- package/lib/tag-input/index.js +1 -1
- package/lib/tag-input/tag-input.d.ts +172 -178
- package/lib/tag-input/tag-props.d.ts +82 -79
- package/lib/timeline/index.d.ts +2 -2
- package/lib/upload/index.d.ts +7 -7
- package/lib/upload/upload.d.ts +2 -2
- package/lib/volar.components.d.ts +1 -0
- package/package.json +2 -3
- package/lib/icon/image-fill.js +0 -1
@@ -130,85 +130,88 @@ declare const tagProps: () => {
|
|
130
130
|
type: BooleanConstructor;
|
131
131
|
default: boolean;
|
132
132
|
};
|
133
|
-
popoverProps:
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
133
|
+
popoverProps: {
|
134
|
+
type: PropType<Partial<Readonly<ExtractPropTypes<{
|
135
|
+
onAfterHidden: FunctionConstructor;
|
136
|
+
onAfterShow: FunctionConstructor;
|
137
|
+
contentCls: import("vue-types").VueTypeValidableDef<string> & {
|
138
|
+
default: string;
|
139
|
+
} & {
|
140
|
+
default: string;
|
141
|
+
};
|
142
|
+
isShow: import("vue-types").VueTypeValidableDef<boolean> & {
|
143
|
+
default: boolean;
|
144
|
+
} & {
|
145
|
+
default: boolean;
|
146
|
+
};
|
147
|
+
always: import("vue-types").VueTypeValidableDef<boolean> & {
|
148
|
+
default: boolean;
|
149
|
+
} & {
|
150
|
+
default: boolean;
|
151
|
+
};
|
152
|
+
disabled: import("vue-types").VueTypeValidableDef<boolean> & {
|
153
|
+
default: boolean;
|
154
|
+
} & {
|
155
|
+
default: boolean;
|
156
|
+
};
|
157
|
+
width: import("vue-types").VueTypeDef<string | number> & {
|
158
|
+
default: string | number;
|
159
|
+
};
|
160
|
+
height: import("vue-types").VueTypeDef<string | number> & {
|
161
|
+
default: string | number;
|
162
|
+
};
|
163
|
+
content: import("vue-types").VueTypeDef<string | number> & {
|
164
|
+
default: string | number;
|
165
|
+
};
|
166
|
+
transition: import("vue-types").VueTypeValidableDef<string> & {
|
167
|
+
default: string;
|
168
|
+
} & {
|
169
|
+
default: string;
|
170
|
+
};
|
171
|
+
placement: import("vue-types").VueTypeDef<string> & {
|
172
|
+
default: string;
|
173
|
+
};
|
174
|
+
theme: import("vue-types").VueTypeValidableDef<string> & {
|
175
|
+
default: string;
|
176
|
+
} & {
|
177
|
+
default: string;
|
178
|
+
};
|
179
|
+
handleFirstUpdate: {
|
180
|
+
type: PropType<import("@bkui-vue/shared").OnFirstUpdateFnType>;
|
181
|
+
default: () => void;
|
182
|
+
};
|
183
|
+
trigger: import("vue-types").VueTypeValidableDef<string> & {
|
184
|
+
default: string;
|
185
|
+
} & {
|
186
|
+
default: string;
|
187
|
+
};
|
188
|
+
arrow: import("vue-types").VueTypeValidableDef<boolean> & {
|
189
|
+
default: boolean;
|
190
|
+
} & {
|
191
|
+
default: boolean;
|
192
|
+
};
|
193
|
+
modifiers: import("vue-types").VueTypeValidableDef<unknown[]> & {
|
194
|
+
default: () => unknown[];
|
195
|
+
} & {
|
196
|
+
default: () => unknown[];
|
197
|
+
};
|
198
|
+
boundary: import("vue-types").VueTypeDef<string | HTMLElement>;
|
199
|
+
fixOnBoundary: import("vue-types").VueTypeValidableDef<boolean> & {
|
200
|
+
default: boolean;
|
201
|
+
} & {
|
202
|
+
default: boolean;
|
203
|
+
};
|
204
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
205
|
+
default: number;
|
206
|
+
} & {
|
207
|
+
default: number;
|
208
|
+
};
|
209
|
+
stopBehaviors: import("vue-types").VueTypeDef<string | string[]> & {
|
210
|
+
default: string | (() => string[]);
|
211
|
+
};
|
212
|
+
}>>>>;
|
213
|
+
default: () => {};
|
214
|
+
};
|
212
215
|
};
|
213
216
|
export default tagProps;
|
214
217
|
export declare type TagProps = Partial<ExtractPropTypes<ReturnType<typeof tagProps>>>;
|
package/lib/timeline/index.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
declare const
|
1
|
+
declare const BkTimeline: {
|
2
2
|
new (...args: any[]): {
|
3
3
|
$: import("vue").ComponentInternalInstance;
|
4
4
|
$data: {};
|
@@ -126,4 +126,4 @@ declare const BkSteps: {
|
|
126
126
|
list: unknown[];
|
127
127
|
titleAble: boolean;
|
128
128
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
|
129
|
-
export default
|
129
|
+
export default BkTimeline;
|
package/lib/upload/index.d.ts
CHANGED
@@ -138,10 +138,10 @@ declare const Upload: {
|
|
138
138
|
}>> & {
|
139
139
|
onError?: (...args: any[]) => any;
|
140
140
|
onProgress?: (...args: any[]) => any;
|
141
|
+
onDelete?: (...args: any[]) => any;
|
141
142
|
onSuccess?: (...args: any[]) => any;
|
142
143
|
onDone?: (...args: any[]) => any;
|
143
144
|
onExceed?: (...args: any[]) => any;
|
144
|
-
onDelete?: (...args: any[]) => any;
|
145
145
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "header" | "name" | "disabled" | "theme" | "extCls" | "size" | "multiple" | "tip" | "files" | "autoUpload" | "delayTime" | "method" | "handleResCode" | "headers" | "withCredentials" | "formDataAttributes" | "beforeUpload" | "beforeRemove" | "sliceUpload" | "sliceUrl" | "mergeUrl" | "chunkSize">;
|
146
146
|
$attrs: {
|
147
147
|
[x: string]: unknown;
|
@@ -154,7 +154,7 @@ declare const Upload: {
|
|
154
154
|
}>;
|
155
155
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
156
156
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
157
|
-
$emit: (event: "progress" | "error" | "success" | "done" | "
|
157
|
+
$emit: (event: "progress" | "error" | "success" | "done" | "delete" | "exceed", ...args: any[]) => void;
|
158
158
|
$el: any;
|
159
159
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
160
160
|
theme: {
|
@@ -268,11 +268,11 @@ declare const Upload: {
|
|
268
268
|
}>> & {
|
269
269
|
onError?: (...args: any[]) => any;
|
270
270
|
onProgress?: (...args: any[]) => any;
|
271
|
+
onDelete?: (...args: any[]) => any;
|
271
272
|
onSuccess?: (...args: any[]) => any;
|
272
273
|
onDone?: (...args: any[]) => any;
|
273
274
|
onExceed?: (...args: any[]) => any;
|
274
|
-
|
275
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("progress" | "error" | "success" | "done" | "exceed" | "delete")[], string, {
|
275
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("progress" | "error" | "success" | "done" | "delete" | "exceed")[], string, {
|
276
276
|
data: import("./upload.type").ExtraFormData | import("./upload.type").ExtraFormData[];
|
277
277
|
header: import("./upload.type").HeaderDataAttr | import("./upload.type").HeaderDataAttr[];
|
278
278
|
name: string;
|
@@ -428,10 +428,10 @@ declare const Upload: {
|
|
428
428
|
}>> & {
|
429
429
|
onError?: (...args: any[]) => any;
|
430
430
|
onProgress?: (...args: any[]) => any;
|
431
|
+
onDelete?: (...args: any[]) => any;
|
431
432
|
onSuccess?: (...args: any[]) => any;
|
432
433
|
onDone?: (...args: any[]) => any;
|
433
434
|
onExceed?: (...args: any[]) => any;
|
434
|
-
onDelete?: (...args: any[]) => any;
|
435
435
|
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & {} & import("vue").ComponentCustomProperties;
|
436
436
|
__isFragment?: never;
|
437
437
|
__isTeleport?: never;
|
@@ -548,11 +548,11 @@ declare const Upload: {
|
|
548
548
|
}>> & {
|
549
549
|
onError?: (...args: any[]) => any;
|
550
550
|
onProgress?: (...args: any[]) => any;
|
551
|
+
onDelete?: (...args: any[]) => any;
|
551
552
|
onSuccess?: (...args: any[]) => any;
|
552
553
|
onDone?: (...args: any[]) => any;
|
553
554
|
onExceed?: (...args: any[]) => any;
|
554
|
-
|
555
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("progress" | "error" | "success" | "done" | "exceed" | "delete")[], "progress" | "error" | "success" | "done" | "delete" | "exceed", {
|
555
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("progress" | "error" | "success" | "done" | "delete" | "exceed")[], "progress" | "error" | "success" | "done" | "delete" | "exceed", {
|
556
556
|
data: import("./upload.type").ExtraFormData | import("./upload.type").ExtraFormData[];
|
557
557
|
header: import("./upload.type").HeaderDataAttr | import("./upload.type").HeaderDataAttr[];
|
558
558
|
name: string;
|
package/lib/upload/upload.d.ts
CHANGED
@@ -108,7 +108,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
108
108
|
type: NumberConstructor;
|
109
109
|
default: number;
|
110
110
|
};
|
111
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("progress" | "error" | "success" | "done" | "
|
111
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("progress" | "error" | "success" | "done" | "delete" | "exceed")[], "progress" | "error" | "success" | "done" | "delete" | "exceed", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
112
112
|
theme: {
|
113
113
|
type: import("vue").PropType<"button" | "picture" | "draggable">;
|
114
114
|
default: "button" | "picture" | "draggable";
|
@@ -220,10 +220,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
220
220
|
}>> & {
|
221
221
|
onError?: (...args: any[]) => any;
|
222
222
|
onProgress?: (...args: any[]) => any;
|
223
|
+
onDelete?: (...args: any[]) => any;
|
223
224
|
onSuccess?: (...args: any[]) => any;
|
224
225
|
onDone?: (...args: any[]) => any;
|
225
226
|
onExceed?: (...args: any[]) => any;
|
226
|
-
onDelete?: (...args: any[]) => any;
|
227
227
|
}, {
|
228
228
|
data: import("./upload.type").ExtraFormData | import("./upload.type").ExtraFormData[];
|
229
229
|
header: import("./upload.type").HeaderDataAttr | import("./upload.type").HeaderDataAttr[];
|
@@ -95,6 +95,7 @@ declare module '@vue/runtime-core' {
|
|
95
95
|
BkProcess: typeof import('./process/process').default;
|
96
96
|
BkUpload: typeof import('./upload/upload').default;
|
97
97
|
BkCodeDiff: typeof import('./code-diff/code-diff').default;
|
98
|
+
BkSeachSelect: typeof import('./code-diff/search-select').default;
|
98
99
|
}
|
99
100
|
}
|
100
101
|
export {};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "bkui-vue",
|
3
|
-
"version": "0.0.1-beta.
|
3
|
+
"version": "0.0.1-beta.197",
|
4
4
|
"workspaces": {
|
5
5
|
"packages": [
|
6
6
|
"packages/!(**.bak)*",
|
@@ -108,8 +108,7 @@
|
|
108
108
|
"highlight.js": "~11.5.0",
|
109
109
|
"vue": "^3.2.0"
|
110
110
|
},
|
111
|
-
"main": "dist/index.
|
112
|
-
"module": "lib/index.js",
|
111
|
+
"main": "dist/index.esm.js",
|
113
112
|
"typings": "lib/index.d.ts",
|
114
113
|
"lint-staged": {
|
115
114
|
"scripts/**/*.(vue|ts|tsx|js)": [
|
package/lib/icon/image-fill.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t(require("vue"));else if("function"==typeof define&&define.amd)define(["vue"],t);else{var r="object"==typeof exports?t(require("vue")):t(e.vue);for(var n in r)("object"==typeof exports?exports:e)[n]=r[n]}}(self,(e=>(()=>{"use strict";var t={9430:(e,t,r)=>{r.d(t,{Z:()=>i});var n=r(748);function o(e,t,r){return(0,n.h)(e.name,Object.assign(Object.assign({key:t},e.attributes),{style:"".concat(e.attributes.style," ").concat(r||"")}),(e.elements||[]).map((function(r,n){return o(r,"".concat(t,"-").concat(e.name,"-").concat(n))})))}Object.create,Object.create;var a=function(e,t){var r=Object.assign(Object.assign({},t.attrs),e),a=r.data,i=r.name,c=r.width,l=r.height,s=r.fill,u=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}(r,["data","name","width","height","fill"]),p="width: ".concat(c,"; height: ").concat(l,"; fill: ").concat(s);return(0,n.createVNode)("span",u,[o(a,i,p)])};a.inheritAttrs=!1,a.displayName="bkIcon";const i=a},748:t=>{t.exports=e}},r={};function n(e){var o=r[e];if(void 0!==o)return o.exports;var a=r[e]={exports:{}};return t[e](a,a.exports,n),a.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};return(()=>{n.r(o),n.d(o,{default:()=>i});var e=n(748),t=n(9430),r=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1303.273","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M664.4363636363637 0C676.8000000000001 0 688.5818181818182 4.945454545454545 697.3090909090909 13.672727272727274L697.3090909090909 13.672727272727274 1010.3272727272728 326.6909090909091C1019.0545454545455 335.41818181818184 1024 347.3454545454546 1024 359.70909090909095L1024 359.70909090909095 1024 1256.7272727272727C1024 1282.4727272727273 1003.2 1303.2727272727273 977.4545454545455 1303.2727272727273L977.4545454545455 1303.2727272727273 46.54545454545455 1303.2727272727273C20.8 1303.2727272727273 0 1282.4727272727273 0 1256.7272727272727L0 1256.7272727272727 0 46.54545454545455C0 20.8 20.8 0 46.54545454545455 0L46.54545454545455 0ZM637.6727272727272 744.7272727272727L474.76363636363635 954.1818181818182 358.40000000000003 814.5454545454546 195.4909090909091 1024 847.1272727272727 1024 637.6727272727272 744.7272727272727ZM465.4545454545455 558.5454545454545C414.041856 558.5454545454545 372.3636363636364 600.2236741818182 372.3636363636364 651.6363636363636 372.3636363636364 703.0490530909091 414.041856 744.7272727272727 465.4545454545455 744.7272727272727 516.8672349090909 744.7272727272727 558.5454545454545 703.0490530909091 558.5454545454545 651.6363636363636 558.5454545454545 600.2236741818182 516.8672349090909 558.5454545454545 465.4545454545455 558.5454545454545ZM642.9090909090909 107.34545454545454L642.9090909090909 381.0909090909091 916.6545454545455 381.0909090909091 642.9090909090909 107.34545454545454Z"}}]}'),a=function(n,o){var a=Object.assign(Object.assign({},n),o.attrs);return(0,e.createVNode)(t.Z,(0,e.mergeProps)(a,{data:r,name:"imageFill"}),null)};a.displayName="imageFill",a.inheritAttrs=!1;const i=a})(),o})()));
|