bkui-vue 0.0.1-beta.418 → 0.0.1-beta.419
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 +29 -29
- package/dist/index.esm.js +186 -101
- package/dist/index.umd.js +33 -33
- package/dist/locale/en.esm.js +1 -1
- package/dist/locale/en.esm.js.map +1 -1
- package/dist/locale/en.umd.js +1 -1
- package/dist/locale/en.umd.js.map +1 -1
- package/dist/locale/zh-cn.esm.js +1 -1
- package/dist/locale/zh-cn.esm.js.map +1 -1
- package/dist/locale/zh-cn.umd.js +1 -1
- package/dist/locale/zh-cn.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/badge/badge.d.ts +1 -1
- package/lib/badge/index.d.ts +4 -4
- package/lib/breadcrumb/breadcrumb-item.d.ts +1 -1
- package/lib/breadcrumb/breadcrumb.d.ts +1 -1
- package/lib/breadcrumb/index.d.ts +5 -5
- package/lib/cascader/cascader.d.ts +1 -1
- package/lib/cascader/index.d.ts +4 -4
- package/lib/color-picker/color-picker.d.ts +1 -1
- package/lib/color-picker/index.d.ts +4 -4
- package/lib/components.d.ts +1 -0
- package/lib/components.js +1 -1
- package/lib/config-provider/config-provider.d.ts +8 -0
- package/lib/config-provider/index.d.ts +16 -0
- package/lib/config-provider/type.d.ts +4 -0
- package/lib/container/container.d.ts +1 -1
- package/lib/container/index.d.ts +4 -4
- package/lib/dialog/dialog.css +1 -1
- package/lib/dialog/dialog.d.ts +1 -1
- package/lib/dialog/dialog.less +1 -1
- package/lib/dialog/dialog.variable.css +1 -1
- package/lib/dialog/index.d.ts +4 -4
- package/lib/dropdown/dropdown.d.ts +1 -1
- package/lib/dropdown/index.d.ts +4 -4
- package/lib/fixed-navbar/fixed-navbar.d.ts +1 -1
- package/lib/fixed-navbar/index.d.ts +4 -4
- package/lib/icon/image-fill.js +1 -0
- package/lib/icon/index.js +1 -1
- package/lib/locale/index.js +1 -1
- package/lib/locale/lang/en.d.ts +4 -0
- package/lib/message/messageConstructor.d.ts +1 -1
- package/lib/modal/index.d.ts +4 -4
- package/lib/modal/modal.d.ts +1 -1
- package/lib/notify/notifyConstructor.d.ts +1 -1
- package/lib/overflow-title/index.d.ts +2 -2
- package/lib/plugin-popover/index.js +1 -1
- package/lib/pop-confirm/index.d.ts +214 -0
- package/lib/pop-confirm/index.js +1 -0
- package/lib/pop-confirm/pop-confirm.css +28 -0
- package/lib/pop-confirm/pop-confirm.d.ts +79 -0
- package/lib/pop-confirm/pop-confirm.less +34 -0
- package/lib/pop-confirm/pop-confirm.variable.css +148 -0
- package/lib/pop-confirm/props.d.ts +59 -0
- package/lib/popover/content.d.ts +11 -0
- package/lib/popover/index.d.ts +24 -1
- package/lib/popover/index.js +1 -1
- package/lib/popover/popover.d.ts +11 -0
- package/lib/popover/props.d.ts +8 -0
- package/lib/preset.d.ts +8 -0
- package/lib/process/index.d.ts +4 -4
- package/lib/process/process.d.ts +1 -1
- package/lib/progress/index.d.ts +4 -4
- package/lib/progress/progress.d.ts +1 -1
- package/lib/select/index.d.ts +15 -0
- package/lib/select/index.js +1 -1
- package/lib/select/select.d.ts +5 -0
- package/lib/sideslider/index.d.ts +4 -4
- package/lib/sideslider/sideslider.d.ts +1 -1
- package/lib/slider/index.d.ts +4 -4
- package/lib/slider/slider.d.ts +1 -1
- package/lib/steps/index.d.ts +4 -4
- package/lib/steps/steps.d.ts +1 -1
- package/lib/styles/index.d.ts +1 -0
- package/lib/switcher/index.d.ts +4 -4
- package/lib/switcher/switcher.d.ts +1 -1
- package/lib/tab/index.d.ts +4 -4
- package/lib/tab/tab.d.ts +1 -1
- package/lib/tag/index.d.ts +4 -4
- package/lib/tag/tag.d.ts +1 -1
- package/lib/tag-input/index.d.ts +20 -0
- package/lib/tag-input/tag-input.d.ts +10 -0
- package/lib/tag-input/tag-props.d.ts +5 -0
- package/lib/timeline/index.d.ts +4 -4
- package/lib/timeline/timeline.d.ts +1 -1
- package/lib/upload/index.d.ts +4 -4
- package/lib/upload/upload.d.ts +1 -1
- package/package.json +1 -1
- package/lib/icon/img-error.js +0 -1
- /package/lib/overflow-title/components/{OverflowTitle.d.ts → overflow-title.d.ts} +0 -0
- /package/lib/overflow-title/directive/{overflowTitle.d.ts → overflow-title.d.ts} +0 -0
@@ -3,8 +3,8 @@ declare const BkFixedNavbar: {
|
|
3
3
|
$: import("vue").ComponentInternalInstance;
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{
|
6
|
-
position: string;
|
7
6
|
extCls: string;
|
7
|
+
position: string;
|
8
8
|
modelValue: boolean;
|
9
9
|
navItems: unknown[];
|
10
10
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
@@ -29,7 +29,7 @@ declare const BkFixedNavbar: {
|
|
29
29
|
}>> & {
|
30
30
|
onClick?: (...args: any[]) => any;
|
31
31
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
32
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
32
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "extCls" | "position" | "modelValue" | "navItems">;
|
33
33
|
$attrs: {
|
34
34
|
[x: string]: unknown;
|
35
35
|
};
|
@@ -66,8 +66,8 @@ declare const BkFixedNavbar: {
|
|
66
66
|
onClick?: (...args: any[]) => any;
|
67
67
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
68
68
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "update:modelValue")[], string, {
|
69
|
-
position: string;
|
70
69
|
extCls: string;
|
70
|
+
position: string;
|
71
71
|
modelValue: boolean;
|
72
72
|
navItems: unknown[];
|
73
73
|
}> & {
|
@@ -139,8 +139,8 @@ declare const BkFixedNavbar: {
|
|
139
139
|
onClick?: (...args: any[]) => any;
|
140
140
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
141
141
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "update:modelValue")[], "click" | "update:modelValue", {
|
142
|
-
position: string;
|
143
142
|
extCls: string;
|
143
|
+
position: string;
|
144
144
|
modelValue: boolean;
|
145
145
|
navItems: unknown[];
|
146
146
|
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
|
@@ -0,0 +1 @@
|
|
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={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.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:()=>s});var e=n(748);function t(r,n,o){return(0,e.h)(r.name,Object.assign(Object.assign({key:n},r.attributes),{style:"".concat(r.attributes.style," ").concat(o||"")}),(r.elements||[]).map((function(e,o){return t(e,"".concat(n,"-").concat(r.name,"-").concat(o))})))}Object.create,Object.create;var r=function(r,n){var o=Object.assign(Object.assign({},n.attrs),r),a=o.data,i=o.name,c=o.width,s=o.height,l=o.fill,p=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}(o,["data","name","width","height","fill"]),f="width: ".concat(c,"; height: ").concat(s,"; fill: ").concat(l);return(0,e.createVNode)("span",(0,e.mergeProps)({style:{display:"inline-flex","align-items":"center","justify-content":"center"}},p),[t(a,i,f)])};r.inheritAttrs=!1,r.displayName="bkIcon";const a=r;var i=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"}}]}'),c=function(t,r){var n=Object.assign(Object.assign({},t),r.attrs);return(0,e.createVNode)(a,(0,e.mergeProps)(n,{data:i,name:"imageFill"}),null)};c.displayName="imageFill",c.inheritAttrs=!1;const s=c})(),o})()));
|