bkui-vue 1.0.3-beta.61 → 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.
Files changed (79) hide show
  1. package/dist/index.cjs.js +69 -69
  2. package/dist/index.esm.js +20154 -19397
  3. package/dist/index.umd.js +69 -69
  4. package/dist/style.css +1 -1
  5. package/dist/style.variable.css +1 -1
  6. package/lib/components.d.ts +1 -0
  7. package/lib/components.js +1 -0
  8. package/lib/dialog/dialog.css +139 -77
  9. package/lib/dialog/dialog.d.ts +41 -121
  10. package/lib/dialog/dialog.less +10 -65
  11. package/lib/dialog/dialog.variable.css +139 -77
  12. package/lib/dialog/index.d.ts +105 -272
  13. package/lib/dialog/index.js +91 -100
  14. package/lib/dialog/props.d.ts +8 -48
  15. package/lib/info-box/index.d.ts +2 -2
  16. package/lib/info-box/index.js +312 -173
  17. package/lib/info-box/info-box.css +63 -7
  18. package/lib/info-box/info-box.d.ts +17 -16
  19. package/lib/info-box/info-box.less +76 -14
  20. package/lib/info-box/info-box.variable.css +63 -7
  21. package/lib/info-box/render-component.d.ts +4 -0
  22. package/lib/modal/index.d.ts +45 -325
  23. package/lib/modal/index.js +187 -666
  24. package/lib/modal/mask.d.ts +6 -0
  25. package/lib/modal/modal.css +131 -31
  26. package/lib/modal/modal.d.ts +16 -126
  27. package/lib/modal/modal.less +84 -28
  28. package/lib/modal/modal.variable.css +131 -31
  29. package/lib/modal/props.mixin.d.ts +2 -53
  30. package/lib/scrollbar/index.d.ts +14 -0
  31. package/lib/scrollbar/index.js +18737 -0
  32. package/lib/scrollbar/scrollbar-core/can-use-dom.d.ts +2 -0
  33. package/lib/scrollbar/scrollbar-core/helpers.d.ts +5 -0
  34. package/lib/scrollbar/scrollbar-core/index.d.ts +236 -0
  35. package/lib/scrollbar/scrollbar-core/mouse-wheel.d.ts +5 -0
  36. package/lib/scrollbar/scrollbar-core/scrollbar-width.d.ts +1 -0
  37. package/lib/scrollbar/scrollbar.css +74 -0
  38. package/lib/scrollbar/scrollbar.less +93 -0
  39. package/lib/scrollbar/scrollbar.variable.css +203 -0
  40. package/lib/select/index.d.ts +0 -33
  41. package/lib/select/index.js +2 -4
  42. package/lib/select/select.css +5 -19
  43. package/lib/select/select.d.ts +0 -11
  44. package/lib/select/select.less +6 -26
  45. package/lib/select/select.variable.css +5 -19
  46. package/lib/select/selectTagInput.d.ts +0 -7
  47. package/lib/shared/index.d.ts +0 -1
  48. package/lib/shared/index.js +1 -48
  49. package/lib/sideslider/index.d.ts +31 -222
  50. package/lib/sideslider/index.js +49 -36
  51. package/lib/sideslider/sideslider.css +4 -42
  52. package/lib/sideslider/sideslider.d.ts +14 -105
  53. package/lib/sideslider/sideslider.less +13 -58
  54. package/lib/sideslider/sideslider.variable.css +4 -42
  55. package/lib/table/const.d.ts +1 -1
  56. package/lib/table/index.js +49 -40
  57. package/lib/table/plugins/use-fixed-column.d.ts +1 -1
  58. package/lib/table/plugins/use-pagination.d.ts +3 -1
  59. package/lib/table/table.css +97 -42
  60. package/lib/table/table.less +43 -58
  61. package/lib/table/table.variable.css +97 -42
  62. package/lib/table/use-attributes.d.ts +1 -0
  63. package/lib/table/use-render.d.ts +1 -1
  64. package/lib/table-column/index.js +1 -1
  65. package/lib/tree/tree.css +75 -2
  66. package/lib/tree/tree.variable.css +75 -2
  67. package/lib/virtual-render/index.d.ts +4 -0
  68. package/lib/virtual-render/index.js +253 -52
  69. package/lib/virtual-render/props.d.ts +7 -0
  70. package/lib/virtual-render/use-fix-top.d.ts +2 -7
  71. package/lib/virtual-render/use-scrollbar.d.ts +23 -0
  72. package/lib/virtual-render/v-virtual-render.d.ts +2 -1
  73. package/lib/virtual-render/virtual-render.css +75 -2
  74. package/lib/virtual-render/virtual-render.d.ts +2 -0
  75. package/lib/virtual-render/virtual-render.less +3 -3
  76. package/lib/virtual-render/virtual-render.variable.css +75 -2
  77. package/package.json +2 -1
  78. package/lib/icon/image-fill.js +0 -191
  79. package/lib/shared/mask.d.ts +0 -11
@@ -15,11 +15,84 @@
15
15
  .bk-F-scroll-y::-webkit-scrollbar-thumb {
16
16
  border-radius: 4px;
17
17
  }
18
+ .bk-scrollbar-wrapper {
19
+ position: relative;
20
+ overflow: hidden;
21
+ }
22
+ .bk-scrollbar-wrapper .bk-scrollbar-content-el {
23
+ display: inline-flex;
24
+ flex-direction: column;
25
+ }
26
+ .bk-scrollbar-wrapper .bk-scrollbar-track {
27
+ z-index: 1;
28
+ position: absolute;
29
+ right: 0;
30
+ bottom: 0;
31
+ pointer-events: none;
32
+ overflow: hidden;
33
+ }
34
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-hover {
35
+ background-color: #F0F1F5;
36
+ cursor: pointer;
37
+ }
38
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-hover .bk-scrollbar::before {
39
+ background-color: #979BA5;
40
+ }
41
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-vertical {
42
+ top: 0;
43
+ width: 8px;
44
+ transform: translate(var(--scroll-offset-x), var(--scroll-offset-y));
45
+ }
46
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal {
47
+ left: 0;
48
+ height: 8px;
49
+ transform: translate(var(--scroll-offset-x), var(--scroll-offset-y));
50
+ }
51
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal.bk-scrollbar {
52
+ right: auto;
53
+ left: 0;
54
+ top: 0;
55
+ bottom: 0;
56
+ min-height: 0;
57
+ min-width: 8px;
58
+ width: auto;
59
+ }
60
+ .bk-scrollbar-wrapper .bk-scrollbar-dragging {
61
+ pointer-events: none;
62
+ -webkit-touch-callout: none;
63
+ -webkit-user-select: none;
64
+ -khtml-user-select: none;
65
+ -moz-user-select: none;
66
+ -ms-user-select: none;
67
+ user-select: none;
68
+ }
69
+ .bk-scrollbar-wrapper .bk-scrollbar {
70
+ position: absolute;
71
+ left: 0;
72
+ right: 0;
73
+ min-height: 8px;
74
+ }
75
+ .bk-scrollbar-wrapper .bk-scrollbar::before {
76
+ position: absolute;
77
+ content: '';
78
+ background: #DCDEE5;
79
+ border-radius: 6px;
80
+ left: 1px;
81
+ right: 1px;
82
+ top: 1px;
83
+ bottom: 1px;
84
+ opacity: 0;
85
+ transition: opacity 0.2s 0.9s linear;
86
+ }
87
+ .bk-scrollbar-wrapper .bk-scrollbar.bk-scrollbar-visible::before {
88
+ opacity: 0.9;
89
+ transition-delay: 0s;
90
+ transition-duration: 0s;
91
+ }
18
92
  .bk-virtual-render {
19
93
  position: relative;
20
94
  }
21
- .bk-virtual-render .bk-virtual-content,
22
- .bk-virtual-render.bk-virtual-content {
95
+ .bk-virtual-render .bk-virtual-content {
23
96
  position: absolute;
24
97
  top: 0;
25
98
  bottom: 0;
@@ -129,6 +129,7 @@ declare const _default: import("vue").DefineComponent<{
129
129
  } & {
130
130
  default: boolean;
131
131
  };
132
+ scrollbar: import("vue-types").VueTypeDef<import("./props").IScrollbarOption>;
132
133
  autoReset: import("vue-types").VueTypeValidableDef<boolean> & {
133
134
  default: boolean;
134
135
  } & {
@@ -264,6 +265,7 @@ declare const _default: import("vue").DefineComponent<{
264
265
  } & {
265
266
  default: boolean;
266
267
  };
268
+ scrollbar: import("vue-types").VueTypeDef<import("./props").IScrollbarOption>;
267
269
  autoReset: import("vue-types").VueTypeValidableDef<boolean> & {
268
270
  default: boolean;
269
271
  } & {
@@ -1,11 +1,11 @@
1
1
  @import '../styles/themes/themes.less';
2
2
  @import '../styles/mixins/scroll.less';
3
+ @import '../scrollbar/scrollbar.less';
3
4
 
4
5
  .@{bk-prefix}-virtual-render {
5
6
  position: relative;
6
7
 
7
- .@{bk-prefix}-virtual-content,
8
- &.@{bk-prefix}-virtual-content {
8
+ .@{bk-prefix}-virtual-content {
9
9
  position: absolute;
10
10
  top: 0;
11
11
  bottom: 0;
@@ -18,4 +18,4 @@
18
18
  width: 1px;
19
19
  background: transparent;
20
20
  }
21
- }
21
+ }
@@ -144,11 +144,84 @@
144
144
  .bk-F-scroll-y::-webkit-scrollbar-thumb {
145
145
  border-radius: 4px;
146
146
  }
147
+ .bk-scrollbar-wrapper {
148
+ position: relative;
149
+ overflow: hidden;
150
+ }
151
+ .bk-scrollbar-wrapper .bk-scrollbar-content-el {
152
+ display: inline-flex;
153
+ flex-direction: column;
154
+ }
155
+ .bk-scrollbar-wrapper .bk-scrollbar-track {
156
+ z-index: 1;
157
+ position: absolute;
158
+ right: 0;
159
+ bottom: 0;
160
+ pointer-events: none;
161
+ overflow: hidden;
162
+ }
163
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-hover {
164
+ background-color: #F0F1F5;
165
+ cursor: pointer;
166
+ }
167
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-hover .bk-scrollbar::before {
168
+ background-color: #979BA5;
169
+ }
170
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-vertical {
171
+ top: 0;
172
+ width: 8px;
173
+ transform: translate(var(--scroll-offset-x), var(--scroll-offset-y));
174
+ }
175
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal {
176
+ left: 0;
177
+ height: 8px;
178
+ transform: translate(var(--scroll-offset-x), var(--scroll-offset-y));
179
+ }
180
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal.bk-scrollbar {
181
+ right: auto;
182
+ left: 0;
183
+ top: 0;
184
+ bottom: 0;
185
+ min-height: 0;
186
+ min-width: 8px;
187
+ width: auto;
188
+ }
189
+ .bk-scrollbar-wrapper .bk-scrollbar-dragging {
190
+ pointer-events: none;
191
+ -webkit-touch-callout: none;
192
+ -webkit-user-select: none;
193
+ -khtml-user-select: none;
194
+ -moz-user-select: none;
195
+ -ms-user-select: none;
196
+ user-select: none;
197
+ }
198
+ .bk-scrollbar-wrapper .bk-scrollbar {
199
+ position: absolute;
200
+ left: 0;
201
+ right: 0;
202
+ min-height: 8px;
203
+ }
204
+ .bk-scrollbar-wrapper .bk-scrollbar::before {
205
+ position: absolute;
206
+ content: '';
207
+ background: #DCDEE5;
208
+ border-radius: 6px;
209
+ left: 1px;
210
+ right: 1px;
211
+ top: 1px;
212
+ bottom: 1px;
213
+ opacity: 0;
214
+ transition: opacity 0.2s 0.9s linear;
215
+ }
216
+ .bk-scrollbar-wrapper .bk-scrollbar.bk-scrollbar-visible::before {
217
+ opacity: 0.9;
218
+ transition-delay: 0s;
219
+ transition-duration: 0s;
220
+ }
147
221
  .bk-virtual-render {
148
222
  position: relative;
149
223
  }
150
- .bk-virtual-render .bk-virtual-content,
151
- .bk-virtual-render.bk-virtual-content {
224
+ .bk-virtual-render .bk-virtual-content {
152
225
  position: absolute;
153
226
  top: 0;
154
227
  bottom: 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "1.0.3-beta.61",
3
+ "version": "1.0.3-beta.61.dialog.1",
4
4
  "workspaces": {
5
5
  "packages": [
6
6
  "packages/!(**.bak)*",
@@ -157,6 +157,7 @@
157
157
  "js-calendar": "~1.2.3",
158
158
  "json-formatter-js": "~2.3.4",
159
159
  "lodash": "~4.17.21",
160
+ "npm": "~10.5.2",
160
161
  "tinycolor2": "~1.6.0",
161
162
  "vue-types": "~4.1.1"
162
163
  }
@@ -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 };
@@ -1,11 +0,0 @@
1
- type IMaskOption = {
2
- el: HTMLElement;
3
- mask?: HTMLElement;
4
- backgroundColor?: string;
5
- showMask?: boolean;
6
- };
7
- export declare const mask: {
8
- showMask: (options: IMaskOption) => void;
9
- hideMask: (options: IMaskOption) => void;
10
- };
11
- export {};