bkui-vue 0.0.3-beta.1 → 0.0.3-beta.3
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 +166 -140
- package/dist/index.esm.js +20024 -16244
- package/dist/index.umd.js +166 -140
- 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/collapse/index.js +9 -9
- package/lib/config-provider/config-provider.d.ts +3 -0
- package/lib/config-provider/index.d.ts +4 -0
- package/lib/config-provider/token.d.ts +1 -0
- package/lib/dialog/dialog.d.ts +2 -2
- package/lib/dialog/index.d.ts +4 -4
- package/lib/dialog/props.d.ts +1 -1
- package/lib/icon/grag-fill.d.ts +4 -0
- package/lib/icon/grag-fill.js +191 -0
- package/lib/icon/index.d.ts +1 -0
- package/lib/icon/index.js +21 -1
- package/lib/info-box/index.d.ts +0 -1
- package/lib/info-box/index.js +17270 -43
- package/lib/info-box/info-box.d.ts +3 -4
- package/lib/locale/index.js +2 -0
- package/lib/locale/lang/en.d.ts +1 -0
- package/lib/modal/index.d.ts +5 -5
- package/lib/modal/index.js +1 -1
- package/lib/modal/modal.d.ts +2 -2
- package/lib/modal/props.mixin.d.ts +1 -1
- package/lib/preset.d.ts +2 -0
- package/lib/shared/index.js +13 -0
- package/lib/shared/vue-types.d.ts +1 -0
- package/lib/sideslider/index.d.ts +4 -4
- package/lib/sideslider/sideslider.d.ts +2 -2
- package/lib/tab/index.js +1 -1
- package/lib/table/events.d.ts +10 -1
- package/lib/table/index.d.ts +39 -0
- package/lib/table/index.js +168 -23
- package/lib/table/plugins/use-draggable.d.ts +17 -0
- package/lib/table/props.d.ts +13 -0
- package/lib/table/table.css +24 -0
- package/lib/table/table.d.ts +15 -0
- package/lib/table/table.less +24 -0
- package/lib/table/table.variable.css +24 -0
- package/lib/table/use-attributes.d.ts +1 -0
- package/lib/table-column/index.js +5 -1
- package/lib/tag-input/index.js +17287 -15
- package/lib/tag-input/tag-render.d.ts +7 -0
- package/lib/tree/index.d.ts +6 -24
- package/lib/tree/index.js +1 -1
- package/lib/tree/props.d.ts +1 -5
- package/lib/tree/tree.d.ts +2 -13
- package/package.json +1 -1
package/lib/collapse/index.js
CHANGED
@@ -321,13 +321,10 @@ function _isSlot(s) {
|
|
321
321
|
}
|
322
322
|
}
|
323
323
|
function getContent() {
|
324
|
-
if (
|
325
|
-
return props.content;
|
326
|
-
}
|
327
|
-
if (typeof slots.content === 'function') {
|
324
|
+
if (slots.content) {
|
328
325
|
return slots.content(external_vue_namespaceObject.h);
|
329
326
|
}
|
330
|
-
return
|
327
|
+
return props.content;
|
331
328
|
}
|
332
329
|
function renderPanel() {
|
333
330
|
if (props.renderDirective === 'if' && !isActive.value) {
|
@@ -521,7 +518,6 @@ function collapse_objectSpread(target) { for (var i = 1; i < arguments.length; i
|
|
521
518
|
// 判定当前Item是否为激活状态
|
522
519
|
var renderItems = function renderItems() {
|
523
520
|
return collapseData.value.map(function (item, index) {
|
524
|
-
var _slots$content, _slots$content2;
|
525
521
|
var name = item[props.idFiled] || index;
|
526
522
|
var title = item[props.titleField];
|
527
523
|
var icon = props.headerIcon || 'angle-right';
|
@@ -543,9 +539,13 @@ function collapse_objectSpread(target) { for (var i = 1; i < arguments.length; i
|
|
543
539
|
"name": name,
|
544
540
|
"icon": icon,
|
545
541
|
"isFormList": true,
|
546
|
-
"title": title
|
547
|
-
|
548
|
-
|
542
|
+
"title": title
|
543
|
+
}, {
|
544
|
+
content: function content() {
|
545
|
+
var _slots$content, _slots$content2;
|
546
|
+
return (_slots$content = (_slots$content2 = slots.content) === null || _slots$content2 === void 0 ? void 0 : _slots$content2.call(slots, item, index)) !== null && _slots$content !== void 0 ? _slots$content : item[props.contentField];
|
547
|
+
}
|
548
|
+
});
|
549
549
|
});
|
550
550
|
};
|
551
551
|
return function () {
|
@@ -79,6 +79,7 @@ export declare const configProviderProps: {
|
|
79
79
|
emptyText: string;
|
80
80
|
confirm: string;
|
81
81
|
reset: string;
|
82
|
+
sort: string;
|
82
83
|
setting: {
|
83
84
|
title: string;
|
84
85
|
fields: {
|
@@ -219,6 +220,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
219
220
|
emptyText: string;
|
220
221
|
confirm: string;
|
221
222
|
reset: string;
|
223
|
+
sort: string;
|
222
224
|
setting: {
|
223
225
|
title: string;
|
224
226
|
fields: {
|
@@ -359,6 +361,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
359
361
|
emptyText: string;
|
360
362
|
confirm: string;
|
361
363
|
reset: string;
|
364
|
+
sort: string;
|
362
365
|
setting: {
|
363
366
|
title: string;
|
364
367
|
fields: {
|
@@ -107,6 +107,7 @@ declare const BkConfigProvider: {
|
|
107
107
|
emptyText: string;
|
108
108
|
confirm: string;
|
109
109
|
reset: string;
|
110
|
+
sort: string;
|
110
111
|
setting: {
|
111
112
|
title: string;
|
112
113
|
fields: {
|
@@ -298,6 +299,7 @@ declare const BkConfigProvider: {
|
|
298
299
|
emptyText: string;
|
299
300
|
confirm: string;
|
300
301
|
reset: string;
|
302
|
+
sort: string;
|
301
303
|
setting: {
|
302
304
|
title: string;
|
303
305
|
fields: {
|
@@ -460,6 +462,7 @@ declare const BkConfigProvider: {
|
|
460
462
|
emptyText: string;
|
461
463
|
confirm: string;
|
462
464
|
reset: string;
|
465
|
+
sort: string;
|
463
466
|
setting: {
|
464
467
|
title: string;
|
465
468
|
fields: {
|
@@ -604,6 +607,7 @@ declare const BkConfigProvider: {
|
|
604
607
|
emptyText: string;
|
605
608
|
confirm: string;
|
606
609
|
reset: string;
|
610
|
+
sort: string;
|
607
611
|
setting: {
|
608
612
|
title: string;
|
609
613
|
fields: {
|
package/lib/dialog/dialog.d.ts
CHANGED
@@ -117,7 +117,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
117
117
|
} & {
|
118
118
|
default: boolean;
|
119
119
|
};
|
120
|
-
infoType: import("vue-types").VueTypeDef<"
|
120
|
+
infoType: import("vue-types").VueTypeDef<"loading" | "success" | "warning" | "danger">;
|
121
121
|
}, {
|
122
122
|
data: {
|
123
123
|
positionX: number;
|
@@ -259,7 +259,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
259
259
|
} & {
|
260
260
|
default: boolean;
|
261
261
|
};
|
262
|
-
infoType: import("vue-types").VueTypeDef<"
|
262
|
+
infoType: import("vue-types").VueTypeDef<"loading" | "success" | "warning" | "danger">;
|
263
263
|
}>> & {
|
264
264
|
onConfirm?: (...args: any[]) => any;
|
265
265
|
onPrev?: (...args: any[]) => any;
|
package/lib/dialog/index.d.ts
CHANGED
@@ -79,7 +79,7 @@ declare const BkDialog: {
|
|
79
79
|
readonly size?: "small" | "medium" | "large" | "normal";
|
80
80
|
readonly dialogType?: "show" | "process" | "operation" | "confirm";
|
81
81
|
readonly beforeClose?: unknown;
|
82
|
-
readonly infoType?: "
|
82
|
+
readonly infoType?: "loading" | "success" | "warning" | "danger";
|
83
83
|
onConfirm?: (...args: any[]) => any;
|
84
84
|
onPrev?: (...args: any[]) => any;
|
85
85
|
onNext?: (...args: any[]) => any;
|
@@ -219,7 +219,7 @@ declare const BkDialog: {
|
|
219
219
|
} & {
|
220
220
|
default: boolean;
|
221
221
|
};
|
222
|
-
infoType: import("vue-types").VueTypeDef<"
|
222
|
+
infoType: import("vue-types").VueTypeDef<"loading" | "success" | "warning" | "danger">;
|
223
223
|
}>> & {
|
224
224
|
onConfirm?: (...args: any[]) => any;
|
225
225
|
onPrev?: (...args: any[]) => any;
|
@@ -418,7 +418,7 @@ declare const BkDialog: {
|
|
418
418
|
} & {
|
419
419
|
default: boolean;
|
420
420
|
};
|
421
|
-
infoType: import("vue-types").VueTypeDef<"
|
421
|
+
infoType: import("vue-types").VueTypeDef<"loading" | "success" | "warning" | "danger">;
|
422
422
|
}>> & {
|
423
423
|
onConfirm?: (...args: any[]) => any;
|
424
424
|
onPrev?: (...args: any[]) => any;
|
@@ -571,7 +571,7 @@ declare const BkDialog: {
|
|
571
571
|
} & {
|
572
572
|
default: boolean;
|
573
573
|
};
|
574
|
-
infoType: import("vue-types").VueTypeDef<"
|
574
|
+
infoType: import("vue-types").VueTypeDef<"loading" | "success" | "warning" | "danger">;
|
575
575
|
}>> & {
|
576
576
|
onConfirm?: (...args: any[]) => any;
|
577
577
|
onPrev?: (...args: any[]) => any;
|
package/lib/dialog/props.d.ts
CHANGED
@@ -117,6 +117,6 @@ declare const props: {
|
|
117
117
|
} & {
|
118
118
|
default: boolean;
|
119
119
|
};
|
120
|
-
infoType: import("vue-types").VueTypeDef<"
|
120
|
+
infoType: import("vue-types").VueTypeDef<"loading" | "success" | "warning" | "danger">;
|
121
121
|
};
|
122
122
|
export default props;
|
@@ -0,0 +1,191 @@
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_vue__ from "vue";
|
2
|
+
/******/ // The require scope
|
3
|
+
/******/ var __webpack_require__ = {};
|
4
|
+
/******/
|
5
|
+
/************************************************************************/
|
6
|
+
/******/ /* webpack/runtime/define property getters */
|
7
|
+
/******/ (() => {
|
8
|
+
/******/ // define getter functions for harmony exports
|
9
|
+
/******/ __webpack_require__.d = (exports, definition) => {
|
10
|
+
/******/ for(var key in definition) {
|
11
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
12
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
13
|
+
/******/ }
|
14
|
+
/******/ }
|
15
|
+
/******/ };
|
16
|
+
/******/ })();
|
17
|
+
/******/
|
18
|
+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
19
|
+
/******/ (() => {
|
20
|
+
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
21
|
+
/******/ })();
|
22
|
+
/******/
|
23
|
+
/************************************************************************/
|
24
|
+
var __webpack_exports__ = {};
|
25
|
+
|
26
|
+
// EXPORTS
|
27
|
+
__webpack_require__.d(__webpack_exports__, {
|
28
|
+
Z: () => (/* binding */ grag_fill)
|
29
|
+
});
|
30
|
+
|
31
|
+
;// CONCATENATED MODULE: ../../node_modules/@babel/runtime/helpers/esm/typeof.js
|
32
|
+
function _typeof(obj) {
|
33
|
+
"@babel/helpers - typeof";
|
34
|
+
|
35
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
|
36
|
+
return typeof obj;
|
37
|
+
} : function (obj) {
|
38
|
+
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
39
|
+
}, _typeof(obj);
|
40
|
+
}
|
41
|
+
;// CONCATENATED MODULE: ../../node_modules/@babel/runtime/helpers/esm/toPrimitive.js
|
42
|
+
|
43
|
+
function _toPrimitive(input, hint) {
|
44
|
+
if (_typeof(input) !== "object" || input === null) return input;
|
45
|
+
var prim = input[Symbol.toPrimitive];
|
46
|
+
if (prim !== undefined) {
|
47
|
+
var res = prim.call(input, hint || "default");
|
48
|
+
if (_typeof(res) !== "object") return res;
|
49
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
50
|
+
}
|
51
|
+
return (hint === "string" ? String : Number)(input);
|
52
|
+
}
|
53
|
+
;// CONCATENATED MODULE: ../../node_modules/@babel/runtime/helpers/esm/toPropertyKey.js
|
54
|
+
|
55
|
+
|
56
|
+
function _toPropertyKey(arg) {
|
57
|
+
var key = _toPrimitive(arg, "string");
|
58
|
+
return _typeof(key) === "symbol" ? key : String(key);
|
59
|
+
}
|
60
|
+
;// CONCATENATED MODULE: ../../node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
61
|
+
|
62
|
+
function _defineProperty(obj, key, value) {
|
63
|
+
key = _toPropertyKey(key);
|
64
|
+
if (key in obj) {
|
65
|
+
Object.defineProperty(obj, key, {
|
66
|
+
value: value,
|
67
|
+
enumerable: true,
|
68
|
+
configurable: true,
|
69
|
+
writable: true
|
70
|
+
});
|
71
|
+
} else {
|
72
|
+
obj[key] = value;
|
73
|
+
}
|
74
|
+
return obj;
|
75
|
+
}
|
76
|
+
;// CONCATENATED MODULE: external "vue"
|
77
|
+
var x = y => { var x = {}; __webpack_require__.d(x, y); return x; }
|
78
|
+
var y = x => () => x
|
79
|
+
const external_vue_namespaceObject = x({ ["createVNode"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.createVNode, ["h"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.h, ["mergeProps"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.mergeProps });
|
80
|
+
;// CONCATENATED MODULE: ../../node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js
|
81
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
82
|
+
if (source == null) return {};
|
83
|
+
var target = {};
|
84
|
+
var sourceKeys = Object.keys(source);
|
85
|
+
var key, i;
|
86
|
+
for (i = 0; i < sourceKeys.length; i++) {
|
87
|
+
key = sourceKeys[i];
|
88
|
+
if (excluded.indexOf(key) >= 0) continue;
|
89
|
+
target[key] = source[key];
|
90
|
+
}
|
91
|
+
return target;
|
92
|
+
}
|
93
|
+
;// CONCATENATED MODULE: ../../node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js
|
94
|
+
|
95
|
+
function _objectWithoutProperties(source, excluded) {
|
96
|
+
if (source == null) return {};
|
97
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
98
|
+
var key, i;
|
99
|
+
if (Object.getOwnPropertySymbols) {
|
100
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
101
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
102
|
+
key = sourceSymbolKeys[i];
|
103
|
+
if (excluded.indexOf(key) >= 0) continue;
|
104
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
105
|
+
target[key] = source[key];
|
106
|
+
}
|
107
|
+
}
|
108
|
+
return target;
|
109
|
+
}
|
110
|
+
;// CONCATENATED MODULE: ../../packages/icon/icons/icon.tsx
|
111
|
+
|
112
|
+
|
113
|
+
var _excluded = ["data", "name", "width", "height", "fill"];
|
114
|
+
|
115
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
116
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
117
|
+
/*
|
118
|
+
* Tencent is pleased to support the open source community by making
|
119
|
+
* 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available.
|
120
|
+
*
|
121
|
+
* Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
|
122
|
+
*
|
123
|
+
* 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) is licensed under the MIT License.
|
124
|
+
*
|
125
|
+
* License for 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition):
|
126
|
+
*
|
127
|
+
* ---------------------------------------------------
|
128
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
129
|
+
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation
|
130
|
+
* the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
|
131
|
+
* to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
132
|
+
*
|
133
|
+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of
|
134
|
+
* the Software.
|
135
|
+
*
|
136
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
137
|
+
* THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
138
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
139
|
+
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
140
|
+
* IN THE SOFTWARE.
|
141
|
+
*/
|
142
|
+
|
143
|
+
function generate(node, key, rootAttrs) {
|
144
|
+
return (0,external_vue_namespaceObject.h)(node.name, _objectSpread(_objectSpread({
|
145
|
+
key: key
|
146
|
+
}, node.attributes), {}, {
|
147
|
+
style: "".concat(node.attributes.style, " ").concat(rootAttrs || '')
|
148
|
+
}), (node.elements || []).map(function (element, index) {
|
149
|
+
return generate(element, "".concat(key, "-").concat(node.name, "-").concat(index));
|
150
|
+
}));
|
151
|
+
}
|
152
|
+
var bkIcon = function bkIcon(props, context) {
|
153
|
+
var _context$attrs$props = _objectSpread(_objectSpread({}, context.attrs), props),
|
154
|
+
data = _context$attrs$props.data,
|
155
|
+
name = _context$attrs$props.name,
|
156
|
+
width = _context$attrs$props.width,
|
157
|
+
height = _context$attrs$props.height,
|
158
|
+
fill = _context$attrs$props.fill,
|
159
|
+
restProps = _objectWithoutProperties(_context$attrs$props, _excluded);
|
160
|
+
var rootAttrs = "width: ".concat(width, "; height: ").concat(height, "; fill: ").concat(fill);
|
161
|
+
var iconBoxStyle = {
|
162
|
+
display: 'inline-flex',
|
163
|
+
'align-items': 'center',
|
164
|
+
'justify-content': 'center'
|
165
|
+
};
|
166
|
+
return (0,external_vue_namespaceObject.createVNode)("span", (0,external_vue_namespaceObject.mergeProps)({
|
167
|
+
"style": iconBoxStyle
|
168
|
+
}, restProps), [generate(data, name, rootAttrs)]);
|
169
|
+
};
|
170
|
+
bkIcon.inheritAttrs = false;
|
171
|
+
bkIcon.displayName = 'bkIcon';
|
172
|
+
/* harmony default export */ const icon = (bkIcon);
|
173
|
+
;// CONCATENATED MODULE: ../../packages/icon/icons/grag-fill.tsx
|
174
|
+
|
175
|
+
|
176
|
+
function grag_fill_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
177
|
+
function grag_fill_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? grag_fill_ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : grag_fill_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
178
|
+
|
179
|
+
var data = JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"fill-rule":"evenodd","d":"M696.96 64a112 112 0 1 1-111.04 112A112 112 0 0 1 696.96 64ZM327.04 64a112 112 0 1 1-111.04 112A112 112 0 0 1 327.04 64ZM696.96 400a112 112 0 1 1-111.04 112A112 112 0 0 1 696.96 400ZM327.04 400a112 112 0 1 1-111.04 112A112 112 0 0 1 327.04 400ZM696.96 736a112 112 0 1 1-111.04 112A112 112 0 0 1 696.96 736ZM327.04 736a112 112 0 1 1-111.04 112A112 112 0 0 1 327.04 736Z"}}]}');
|
180
|
+
var gragFill = function gragFill(props, context) {
|
181
|
+
var p = grag_fill_objectSpread(grag_fill_objectSpread({}, props), context.attrs);
|
182
|
+
return (0,external_vue_namespaceObject.createVNode)(icon, (0,external_vue_namespaceObject.mergeProps)(p, {
|
183
|
+
"data": data,
|
184
|
+
"name": "gragFill"
|
185
|
+
}), null);
|
186
|
+
};
|
187
|
+
gragFill.displayName = 'gragFill';
|
188
|
+
gragFill.inheritAttrs = false;
|
189
|
+
/* harmony default export */ const grag_fill = (gragFill);
|
190
|
+
var __webpack_exports__default = __webpack_exports__.Z;
|
191
|
+
export { __webpack_exports__default as default };
|
package/lib/icon/index.d.ts
CHANGED
@@ -46,6 +46,7 @@ export { default as FolderShapeOpen } from '../icon/folder-shape-open';
|
|
46
46
|
export { default as FolderShape } from '../icon/folder-shape';
|
47
47
|
export { default as Folder } from '../icon/folder';
|
48
48
|
export { default as Funnel } from '../icon/funnel';
|
49
|
+
export { default as GragFill } from '../icon/grag-fill';
|
49
50
|
export { default as HelpDocumentFill } from '../icon/help-document-fill';
|
50
51
|
export { default as HelpFill } from '../icon/help-fill';
|
51
52
|
export { default as Help } from '../icon/help';
|
package/lib/icon/index.js
CHANGED
@@ -1251,6 +1251,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
1251
1251
|
YX: () => (/* reexport */ folder_shape),
|
1252
1252
|
Gn: () => (/* reexport */ folder_shape_open),
|
1253
1253
|
oe: () => (/* reexport */ icons_funnel),
|
1254
|
+
TE: () => (/* reexport */ grag_fill),
|
1254
1255
|
WW: () => (/* reexport */ icons_help),
|
1255
1256
|
iL: () => (/* reexport */ help_document_fill),
|
1256
1257
|
Tv: () => (/* reexport */ help_fill),
|
@@ -2112,6 +2113,23 @@ var funnel = function funnel(props, context) {
|
|
2112
2113
|
funnel.displayName = 'funnel';
|
2113
2114
|
funnel.inheritAttrs = false;
|
2114
2115
|
/* harmony default export */ const icons_funnel = (funnel);
|
2116
|
+
;// CONCATENATED MODULE: ../../packages/icon/icons/grag-fill.tsx
|
2117
|
+
|
2118
|
+
|
2119
|
+
function grag_fill_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
2120
|
+
function grag_fill_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? grag_fill_ownKeys(Object(source), !0).forEach(function (key) { (0,defineProperty/* default */.Z)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : grag_fill_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
2121
|
+
|
2122
|
+
var grag_fill_data = JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"fill-rule":"evenodd","d":"M696.96 64a112 112 0 1 1-111.04 112A112 112 0 0 1 696.96 64ZM327.04 64a112 112 0 1 1-111.04 112A112 112 0 0 1 327.04 64ZM696.96 400a112 112 0 1 1-111.04 112A112 112 0 0 1 696.96 400ZM327.04 400a112 112 0 1 1-111.04 112A112 112 0 0 1 327.04 400ZM696.96 736a112 112 0 1 1-111.04 112A112 112 0 0 1 696.96 736ZM327.04 736a112 112 0 1 1-111.04 112A112 112 0 0 1 327.04 736Z"}}]}');
|
2123
|
+
var gragFill = function gragFill(props, context) {
|
2124
|
+
var p = grag_fill_objectSpread(grag_fill_objectSpread({}, props), context.attrs);
|
2125
|
+
return (0,external_vue_.createVNode)(icon/* default */.Z, (0,external_vue_.mergeProps)(p, {
|
2126
|
+
"data": grag_fill_data,
|
2127
|
+
"name": "gragFill"
|
2128
|
+
}), null);
|
2129
|
+
};
|
2130
|
+
gragFill.displayName = 'gragFill';
|
2131
|
+
gragFill.inheritAttrs = false;
|
2132
|
+
/* harmony default export */ const grag_fill = (gragFill);
|
2115
2133
|
;// CONCATENATED MODULE: ../../packages/icon/icons/help-document-fill.tsx
|
2116
2134
|
|
2117
2135
|
|
@@ -2340,6 +2358,7 @@ var weixin = __webpack_require__(4273);
|
|
2340
2358
|
|
2341
2359
|
|
2342
2360
|
|
2361
|
+
|
2343
2362
|
|
2344
2363
|
|
2345
2364
|
})();
|
@@ -2392,6 +2411,7 @@ var __webpack_exports__FolderOpen = __webpack_exports__.P7;
|
|
2392
2411
|
var __webpack_exports__FolderShape = __webpack_exports__.YX;
|
2393
2412
|
var __webpack_exports__FolderShapeOpen = __webpack_exports__.Gn;
|
2394
2413
|
var __webpack_exports__Funnel = __webpack_exports__.oe;
|
2414
|
+
var __webpack_exports__GragFill = __webpack_exports__.TE;
|
2395
2415
|
var __webpack_exports__Help = __webpack_exports__.WW;
|
2396
2416
|
var __webpack_exports__HelpDocumentFill = __webpack_exports__.iL;
|
2397
2417
|
var __webpack_exports__HelpFill = __webpack_exports__.Tv;
|
@@ -2429,4 +2449,4 @@ var __webpack_exports__VideoFill = __webpack_exports__.EU;
|
|
2429
2449
|
var __webpack_exports__Warn = __webpack_exports__.uU;
|
2430
2450
|
var __webpack_exports__Weixin = __webpack_exports__.$L;
|
2431
2451
|
var __webpack_exports__WeixinPro = __webpack_exports__.lS;
|
2432
|
-
export { __webpack_exports__AngleDoubleDownLine as AngleDoubleDownLine, __webpack_exports__AngleDoubleLeft as AngleDoubleLeft, __webpack_exports__AngleDoubleLeftLine as AngleDoubleLeftLine, __webpack_exports__AngleDoubleRight as AngleDoubleRight, __webpack_exports__AngleDoubleRightLine as AngleDoubleRightLine, __webpack_exports__AngleDoubleUpLine as AngleDoubleUpLine, __webpack_exports__AngleDown as AngleDown, __webpack_exports__AngleDownFill as AngleDownFill, __webpack_exports__AngleDownLine as AngleDownLine, __webpack_exports__AngleLeft as AngleLeft, __webpack_exports__AngleRight as AngleRight, __webpack_exports__AngleUp as AngleUp, __webpack_exports__AngleUpFill as AngleUpFill, __webpack_exports__ArchiveFill as ArchiveFill, __webpack_exports__ArrowsLeft as ArrowsLeft, __webpack_exports__ArrowsRight as ArrowsRight, __webpack_exports__Assistant as Assistant, __webpack_exports__AudioFill as AudioFill, __webpack_exports__Bk as Bk, __webpack_exports__Circle as Circle, __webpack_exports__Close as Close, __webpack_exports__CloseLine as CloseLine, __webpack_exports__Code as Code, __webpack_exports__CogShape as CogShape, __webpack_exports__CollapseLeft as CollapseLeft, __webpack_exports__Copy as Copy, __webpack_exports__CopyShape as CopyShape, __webpack_exports__DataShape as DataShape, __webpack_exports__Del as Del, __webpack_exports__DocFill as DocFill, __webpack_exports__Done as Done, __webpack_exports__DownShape as DownShape, __webpack_exports__DownSmall as DownSmall, __webpack_exports__EditLine as EditLine, __webpack_exports__Ellipsis as Ellipsis, __webpack_exports__EnlargeLine as EnlargeLine, __webpack_exports__Error as Error, __webpack_exports__ExcelFill as ExcelFill, __webpack_exports__ExclamationCircleShape as ExclamationCircleShape, __webpack_exports__Eye as Eye, __webpack_exports__FilliscreenLine as FilliscreenLine, __webpack_exports__FixLine as FixLine, __webpack_exports__FixShape as FixShape, __webpack_exports__Folder as Folder, __webpack_exports__FolderOpen as FolderOpen, __webpack_exports__FolderShape as FolderShape, __webpack_exports__FolderShapeOpen as FolderShapeOpen, __webpack_exports__Funnel as Funnel, __webpack_exports__Help as Help, __webpack_exports__HelpDocumentFill as HelpDocumentFill, __webpack_exports__HelpFill as HelpFill, __webpack_exports__ImageFill as ImageFill, __webpack_exports__ImgError as ImgError, __webpack_exports__ImgPlacehoulder as ImgPlacehoulder, __webpack_exports__Info as Info, __webpack_exports__InfoLine as InfoLine, __webpack_exports__LeftShape as LeftShape, __webpack_exports__LeftTurnLine as LeftTurnLine, __webpack_exports__Loading as Loading, __webpack_exports__NarrowLine as NarrowLine, __webpack_exports__Original as Original, __webpack_exports__PdfFill as PdfFill, __webpack_exports__PlayShape as PlayShape, __webpack_exports__Plus as Plus, __webpack_exports__PptFill as PptFill, __webpack_exports__Qq as Qq, __webpack_exports__RightShape as RightShape, __webpack_exports__RightTurnLine as RightTurnLine, __webpack_exports__Search as Search, __webpack_exports__Share as Share, __webpack_exports__Spinner as Spinner, __webpack_exports__Success as Success, __webpack_exports__SwitcherLoading as SwitcherLoading, __webpack_exports__TextFile as TextFile, __webpack_exports__TextFill as TextFill, __webpack_exports__Transfer as Transfer, __webpack_exports__TreeApplicationShape as TreeApplicationShape, __webpack_exports__UnfullScreen as UnfullScreen, __webpack_exports__Unvisible as Unvisible, __webpack_exports__UpShape as UpShape, __webpack_exports__Upload as Upload, __webpack_exports__VideoFill as VideoFill, __webpack_exports__Warn as Warn, __webpack_exports__Weixin as Weixin, __webpack_exports__WeixinPro as WeixinPro };
|
2452
|
+
export { __webpack_exports__AngleDoubleDownLine as AngleDoubleDownLine, __webpack_exports__AngleDoubleLeft as AngleDoubleLeft, __webpack_exports__AngleDoubleLeftLine as AngleDoubleLeftLine, __webpack_exports__AngleDoubleRight as AngleDoubleRight, __webpack_exports__AngleDoubleRightLine as AngleDoubleRightLine, __webpack_exports__AngleDoubleUpLine as AngleDoubleUpLine, __webpack_exports__AngleDown as AngleDown, __webpack_exports__AngleDownFill as AngleDownFill, __webpack_exports__AngleDownLine as AngleDownLine, __webpack_exports__AngleLeft as AngleLeft, __webpack_exports__AngleRight as AngleRight, __webpack_exports__AngleUp as AngleUp, __webpack_exports__AngleUpFill as AngleUpFill, __webpack_exports__ArchiveFill as ArchiveFill, __webpack_exports__ArrowsLeft as ArrowsLeft, __webpack_exports__ArrowsRight as ArrowsRight, __webpack_exports__Assistant as Assistant, __webpack_exports__AudioFill as AudioFill, __webpack_exports__Bk as Bk, __webpack_exports__Circle as Circle, __webpack_exports__Close as Close, __webpack_exports__CloseLine as CloseLine, __webpack_exports__Code as Code, __webpack_exports__CogShape as CogShape, __webpack_exports__CollapseLeft as CollapseLeft, __webpack_exports__Copy as Copy, __webpack_exports__CopyShape as CopyShape, __webpack_exports__DataShape as DataShape, __webpack_exports__Del as Del, __webpack_exports__DocFill as DocFill, __webpack_exports__Done as Done, __webpack_exports__DownShape as DownShape, __webpack_exports__DownSmall as DownSmall, __webpack_exports__EditLine as EditLine, __webpack_exports__Ellipsis as Ellipsis, __webpack_exports__EnlargeLine as EnlargeLine, __webpack_exports__Error as Error, __webpack_exports__ExcelFill as ExcelFill, __webpack_exports__ExclamationCircleShape as ExclamationCircleShape, __webpack_exports__Eye as Eye, __webpack_exports__FilliscreenLine as FilliscreenLine, __webpack_exports__FixLine as FixLine, __webpack_exports__FixShape as FixShape, __webpack_exports__Folder as Folder, __webpack_exports__FolderOpen as FolderOpen, __webpack_exports__FolderShape as FolderShape, __webpack_exports__FolderShapeOpen as FolderShapeOpen, __webpack_exports__Funnel as Funnel, __webpack_exports__GragFill as GragFill, __webpack_exports__Help as Help, __webpack_exports__HelpDocumentFill as HelpDocumentFill, __webpack_exports__HelpFill as HelpFill, __webpack_exports__ImageFill as ImageFill, __webpack_exports__ImgError as ImgError, __webpack_exports__ImgPlacehoulder as ImgPlacehoulder, __webpack_exports__Info as Info, __webpack_exports__InfoLine as InfoLine, __webpack_exports__LeftShape as LeftShape, __webpack_exports__LeftTurnLine as LeftTurnLine, __webpack_exports__Loading as Loading, __webpack_exports__NarrowLine as NarrowLine, __webpack_exports__Original as Original, __webpack_exports__PdfFill as PdfFill, __webpack_exports__PlayShape as PlayShape, __webpack_exports__Plus as Plus, __webpack_exports__PptFill as PptFill, __webpack_exports__Qq as Qq, __webpack_exports__RightShape as RightShape, __webpack_exports__RightTurnLine as RightTurnLine, __webpack_exports__Search as Search, __webpack_exports__Share as Share, __webpack_exports__Spinner as Spinner, __webpack_exports__Success as Success, __webpack_exports__SwitcherLoading as SwitcherLoading, __webpack_exports__TextFile as TextFile, __webpack_exports__TextFill as TextFill, __webpack_exports__Transfer as Transfer, __webpack_exports__TreeApplicationShape as TreeApplicationShape, __webpack_exports__UnfullScreen as UnfullScreen, __webpack_exports__Unvisible as Unvisible, __webpack_exports__UpShape as UpShape, __webpack_exports__Upload as Upload, __webpack_exports__VideoFill as VideoFill, __webpack_exports__Warn as Warn, __webpack_exports__Weixin as Weixin, __webpack_exports__WeixinPro as WeixinPro };
|
package/lib/info-box/index.d.ts
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
declare const BkInfoBox: ((config: Partial<import("./info-box").ModalFuncProps>) => {
|
2
2
|
show: () => void;
|
3
3
|
hide: () => void;
|
4
|
-
update: (config: Partial<import("./info-box").ModalFuncProps>) => void;
|
5
4
|
destroy: () => void;
|
6
5
|
}) & import("vue").Plugin<any[]>;
|
7
6
|
export default BkInfoBox;
|