bkui-vue 1.0.3-beta.60.scrollbar.5 → 1.0.3-beta.61.dialog.1
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 +61 -63
- package/dist/index.esm.js +19978 -19906
- package/dist/index.umd.js +61 -63
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/components.d.ts +2 -0
- package/lib/components.js +3 -1
- package/lib/date-picker/index.js +1 -1
- package/lib/dialog/dialog.css +140 -80
- package/lib/dialog/dialog.d.ts +41 -121
- package/lib/dialog/dialog.less +10 -65
- package/lib/dialog/dialog.variable.css +140 -80
- package/lib/dialog/index.d.ts +105 -272
- package/lib/dialog/index.js +91 -100
- package/lib/dialog/props.d.ts +8 -48
- package/lib/info-box/index.d.ts +2 -2
- package/lib/info-box/index.js +312 -172
- package/lib/info-box/info-box.css +63 -7
- package/lib/info-box/info-box.d.ts +17 -16
- package/lib/info-box/info-box.less +76 -14
- package/lib/info-box/info-box.variable.css +63 -7
- package/lib/info-box/render-component.d.ts +4 -0
- package/lib/modal/hooks.d.ts +1 -1
- package/lib/modal/index.d.ts +48 -325
- package/lib/modal/index.js +195 -675
- package/lib/modal/mask.d.ts +6 -0
- package/lib/modal/modal.css +132 -34
- package/lib/modal/modal.d.ts +17 -126
- package/lib/modal/modal.less +88 -39
- package/lib/modal/modal.variable.css +132 -34
- package/lib/modal/props.mixin.d.ts +2 -53
- package/lib/scrollbar/index.d.ts +14 -0
- package/lib/scrollbar/index.js +18737 -0
- package/lib/{virtual-render → scrollbar}/scrollbar-core/index.d.ts +31 -8
- package/lib/{virtual-render/bk-scrollbar.css → scrollbar/scrollbar.css} +13 -13
- package/lib/{virtual-render/bk-scrollbar.less → scrollbar/scrollbar.less} +13 -13
- package/lib/{virtual-render/bk-scrollbar.variable.css → scrollbar/scrollbar.variable.css} +13 -13
- package/lib/search-select/index.d.ts +327 -12
- package/lib/search-select/index.js +620 -340
- package/lib/search-select/input.d.ts +6 -1
- package/lib/search-select/search-select.css +20 -6
- package/lib/search-select/search-select.d.ts +109 -4
- package/lib/search-select/search-select.less +16 -12
- package/lib/search-select/search-select.variable.css +20 -6
- package/lib/search-select/selected.d.ts +107 -5
- package/lib/search-select/utils.d.ts +13 -1
- package/lib/select/index.d.ts +23 -0
- package/lib/select/index.js +4 -1
- package/lib/select/select.d.ts +11 -0
- package/lib/shared/index.d.ts +0 -1
- package/lib/shared/index.js +1 -48
- package/lib/sideslider/index.d.ts +31 -222
- package/lib/sideslider/index.js +49 -36
- package/lib/sideslider/sideslider.css +4 -47
- package/lib/sideslider/sideslider.d.ts +14 -105
- package/lib/sideslider/sideslider.less +14 -65
- package/lib/sideslider/sideslider.variable.css +4 -47
- package/lib/table/index.js +37 -28
- package/lib/table/plugins/use-pagination.d.ts +3 -1
- package/lib/table/table.css +14 -13
- package/lib/table/table.less +2 -2
- package/lib/table/table.variable.css +14 -13
- package/lib/table/use-attributes.d.ts +1 -0
- package/lib/timeline/index.js +1 -0
- package/lib/tree/tree.css +13 -13
- package/lib/tree/tree.variable.css +13 -13
- package/lib/upload/index.d.ts +12 -0
- package/lib/upload/index.js +21 -30
- package/lib/upload/props.d.ts +3 -0
- package/lib/upload/upload-trigger.d.ts +6 -0
- package/lib/upload/upload.d.ts +6 -0
- package/lib/virtual-render/index.js +262 -2175
- package/lib/virtual-render/use-scrollbar.d.ts +2 -2
- package/lib/virtual-render/virtual-render.css +13 -13
- package/lib/virtual-render/virtual-render.less +2 -2
- package/lib/virtual-render/virtual-render.variable.css +13 -13
- package/package.json +2 -2
- package/lib/icon/image-fill.js +0 -191
- package/lib/shared/mask.d.ts +0 -11
- package/lib/virtual-render/bk-scrollbar.d.ts +0 -10
- /package/lib/{virtual-render → scrollbar}/scrollbar-core/can-use-dom.d.ts +0 -0
- /package/lib/{virtual-render → scrollbar}/scrollbar-core/helpers.d.ts +0 -0
- /package/lib/{virtual-render → scrollbar}/scrollbar-core/mouse-wheel.d.ts +0 -0
- /package/lib/{virtual-render → scrollbar}/scrollbar-core/scrollbar-width.d.ts +0 -0
@@ -1,9 +1,9 @@
|
|
1
1
|
import { Ref } from 'vue';
|
2
|
-
import
|
2
|
+
import BkScrollbar from '../scrollbar';
|
3
3
|
import { VirtualRenderProps } from './props';
|
4
4
|
declare const _default: (target: Ref<HTMLElement>, props: VirtualRenderProps) => {
|
5
5
|
init: (scrollFn?: any, delegateXContent?: any, delegateYContent?: any) => void;
|
6
|
-
instance:
|
6
|
+
instance: BkScrollbar;
|
7
7
|
scrollTo: (x: any, y: any) => void;
|
8
8
|
classNames: {
|
9
9
|
contentEl: string;
|
@@ -19,7 +19,7 @@
|
|
19
19
|
position: relative;
|
20
20
|
overflow: hidden;
|
21
21
|
}
|
22
|
-
.bk-scrollbar-wrapper .bk-
|
22
|
+
.bk-scrollbar-wrapper .bk-scrollbar-content-el {
|
23
23
|
display: inline-flex;
|
24
24
|
flex-direction: column;
|
25
25
|
}
|
@@ -40,12 +40,12 @@
|
|
40
40
|
}
|
41
41
|
.bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-vertical {
|
42
42
|
top: 0;
|
43
|
-
width:
|
43
|
+
width: 8px;
|
44
44
|
transform: translate(var(--scroll-offset-x), var(--scroll-offset-y));
|
45
45
|
}
|
46
46
|
.bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal {
|
47
47
|
left: 0;
|
48
|
-
height:
|
48
|
+
height: 8px;
|
49
49
|
transform: translate(var(--scroll-offset-x), var(--scroll-offset-y));
|
50
50
|
}
|
51
51
|
.bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal.bk-scrollbar {
|
@@ -54,7 +54,7 @@
|
|
54
54
|
top: 0;
|
55
55
|
bottom: 0;
|
56
56
|
min-height: 0;
|
57
|
-
min-width:
|
57
|
+
min-width: 8px;
|
58
58
|
width: auto;
|
59
59
|
}
|
60
60
|
.bk-scrollbar-wrapper .bk-scrollbar-dragging {
|
@@ -70,22 +70,22 @@
|
|
70
70
|
position: absolute;
|
71
71
|
left: 0;
|
72
72
|
right: 0;
|
73
|
-
min-height:
|
73
|
+
min-height: 8px;
|
74
74
|
}
|
75
75
|
.bk-scrollbar-wrapper .bk-scrollbar::before {
|
76
76
|
position: absolute;
|
77
77
|
content: '';
|
78
|
-
background: #
|
79
|
-
border-radius:
|
80
|
-
left:
|
81
|
-
right:
|
82
|
-
top:
|
83
|
-
bottom:
|
78
|
+
background: #DCDEE5;
|
79
|
+
border-radius: 6px;
|
80
|
+
left: 1px;
|
81
|
+
right: 1px;
|
82
|
+
top: 1px;
|
83
|
+
bottom: 1px;
|
84
84
|
opacity: 0;
|
85
|
-
transition: opacity 0.2s 0.
|
85
|
+
transition: opacity 0.2s 0.9s linear;
|
86
86
|
}
|
87
87
|
.bk-scrollbar-wrapper .bk-scrollbar.bk-scrollbar-visible::before {
|
88
|
-
opacity: 0.
|
88
|
+
opacity: 0.9;
|
89
89
|
transition-delay: 0s;
|
90
90
|
transition-duration: 0s;
|
91
91
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
@import '../styles/themes/themes.less';
|
2
2
|
@import '../styles/mixins/scroll.less';
|
3
|
-
@import '
|
3
|
+
@import '../scrollbar/scrollbar.less';
|
4
4
|
|
5
5
|
.@{bk-prefix}-virtual-render {
|
6
6
|
position: relative;
|
@@ -18,4 +18,4 @@
|
|
18
18
|
width: 1px;
|
19
19
|
background: transparent;
|
20
20
|
}
|
21
|
-
}
|
21
|
+
}
|
@@ -148,7 +148,7 @@
|
|
148
148
|
position: relative;
|
149
149
|
overflow: hidden;
|
150
150
|
}
|
151
|
-
.bk-scrollbar-wrapper .bk-
|
151
|
+
.bk-scrollbar-wrapper .bk-scrollbar-content-el {
|
152
152
|
display: inline-flex;
|
153
153
|
flex-direction: column;
|
154
154
|
}
|
@@ -169,12 +169,12 @@
|
|
169
169
|
}
|
170
170
|
.bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-vertical {
|
171
171
|
top: 0;
|
172
|
-
width:
|
172
|
+
width: 8px;
|
173
173
|
transform: translate(var(--scroll-offset-x), var(--scroll-offset-y));
|
174
174
|
}
|
175
175
|
.bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal {
|
176
176
|
left: 0;
|
177
|
-
height:
|
177
|
+
height: 8px;
|
178
178
|
transform: translate(var(--scroll-offset-x), var(--scroll-offset-y));
|
179
179
|
}
|
180
180
|
.bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal.bk-scrollbar {
|
@@ -183,7 +183,7 @@
|
|
183
183
|
top: 0;
|
184
184
|
bottom: 0;
|
185
185
|
min-height: 0;
|
186
|
-
min-width:
|
186
|
+
min-width: 8px;
|
187
187
|
width: auto;
|
188
188
|
}
|
189
189
|
.bk-scrollbar-wrapper .bk-scrollbar-dragging {
|
@@ -199,22 +199,22 @@
|
|
199
199
|
position: absolute;
|
200
200
|
left: 0;
|
201
201
|
right: 0;
|
202
|
-
min-height:
|
202
|
+
min-height: 8px;
|
203
203
|
}
|
204
204
|
.bk-scrollbar-wrapper .bk-scrollbar::before {
|
205
205
|
position: absolute;
|
206
206
|
content: '';
|
207
|
-
background: #
|
208
|
-
border-radius:
|
209
|
-
left:
|
210
|
-
right:
|
211
|
-
top:
|
212
|
-
bottom:
|
207
|
+
background: #DCDEE5;
|
208
|
+
border-radius: 6px;
|
209
|
+
left: 1px;
|
210
|
+
right: 1px;
|
211
|
+
top: 1px;
|
212
|
+
bottom: 1px;
|
213
213
|
opacity: 0;
|
214
|
-
transition: opacity 0.2s 0.
|
214
|
+
transition: opacity 0.2s 0.9s linear;
|
215
215
|
}
|
216
216
|
.bk-scrollbar-wrapper .bk-scrollbar.bk-scrollbar-visible::before {
|
217
|
-
opacity: 0.
|
217
|
+
opacity: 0.9;
|
218
218
|
transition-delay: 0s;
|
219
219
|
transition-duration: 0s;
|
220
220
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "bkui-vue",
|
3
|
-
"version": "1.0.3-beta.
|
3
|
+
"version": "1.0.3-beta.61.dialog.1",
|
4
4
|
"workspaces": {
|
5
5
|
"packages": [
|
6
6
|
"packages/!(**.bak)*",
|
@@ -157,7 +157,7 @@
|
|
157
157
|
"js-calendar": "~1.2.3",
|
158
158
|
"json-formatter-js": "~2.3.4",
|
159
159
|
"lodash": "~4.17.21",
|
160
|
-
"
|
160
|
+
"npm": "~10.5.2",
|
161
161
|
"tinycolor2": "~1.6.0",
|
162
162
|
"vue-types": "~4.1.1"
|
163
163
|
}
|
package/lib/icon/image-fill.js
DELETED
@@ -1,191 +0,0 @@
|
|
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
|
-
"default": () => (/* binding */ image_fill)
|
29
|
-
});
|
30
|
-
|
31
|
-
;// CONCATENATED MODULE: ../../node_modules/@babel/runtime/helpers/esm/typeof.js
|
32
|
-
function _typeof(o) {
|
33
|
-
"@babel/helpers - typeof";
|
34
|
-
|
35
|
-
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
36
|
-
return typeof o;
|
37
|
-
} : function (o) {
|
38
|
-
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
39
|
-
}, _typeof(o);
|
40
|
-
}
|
41
|
-
;// CONCATENATED MODULE: ../../node_modules/@babel/runtime/helpers/esm/toPrimitive.js
|
42
|
-
|
43
|
-
function toPrimitive(t, r) {
|
44
|
-
if ("object" != _typeof(t) || !t) return t;
|
45
|
-
var e = t[Symbol.toPrimitive];
|
46
|
-
if (void 0 !== e) {
|
47
|
-
var i = e.call(t, r || "default");
|
48
|
-
if ("object" != _typeof(i)) return i;
|
49
|
-
throw new TypeError("@@toPrimitive must return a primitive value.");
|
50
|
-
}
|
51
|
-
return ("string" === r ? String : Number)(t);
|
52
|
-
}
|
53
|
-
;// CONCATENATED MODULE: ../../node_modules/@babel/runtime/helpers/esm/toPropertyKey.js
|
54
|
-
|
55
|
-
|
56
|
-
function toPropertyKey(t) {
|
57
|
-
var i = toPrimitive(t, "string");
|
58
|
-
return "symbol" == _typeof(i) ? i : i + "";
|
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(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
116
|
-
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
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/image-fill.tsx
|
174
|
-
|
175
|
-
|
176
|
-
function image_fill_ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
177
|
-
function image_fill_objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? image_fill_ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : image_fill_ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
178
|
-
|
179
|
-
var data = 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"}}]}');
|
180
|
-
var imageFill = function imageFill(props, context) {
|
181
|
-
var p = image_fill_objectSpread(image_fill_objectSpread({}, props), context.attrs);
|
182
|
-
return (0,external_vue_namespaceObject.createVNode)(icon, (0,external_vue_namespaceObject.mergeProps)(p, {
|
183
|
-
"data": data,
|
184
|
-
"name": "imageFill"
|
185
|
-
}), null);
|
186
|
-
};
|
187
|
-
imageFill.displayName = 'imageFill';
|
188
|
-
imageFill.inheritAttrs = false;
|
189
|
-
/* harmony default export */ const image_fill = (imageFill);
|
190
|
-
var __webpack_exports__default = __webpack_exports__["default"];
|
191
|
-
export { __webpack_exports__default as default };
|
package/lib/shared/mask.d.ts
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
import SimpleBarCore from './scrollbar-core';
|
2
|
-
export default class BkSimpleBar extends SimpleBarCore {
|
3
|
-
static globalObserver: MutationObserver;
|
4
|
-
static instances: WeakMap<object, any>;
|
5
|
-
static removeObserver(): void;
|
6
|
-
constructor(...args: ConstructorParameters<typeof SimpleBarCore>);
|
7
|
-
initDOM(): void;
|
8
|
-
unMount(): void;
|
9
|
-
private createScrollElement;
|
10
|
-
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|