bkui-vue 0.0.1-beta.159 → 0.0.1-beta.161

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 +41 -41
  2. package/dist/index.esm.js +1395 -237
  3. package/dist/index.umd.js +41 -41
  4. package/dist/style.css +1 -1
  5. package/dist/style.variable.css +1 -1
  6. package/lib/cascader/cascader.css +1 -1
  7. package/lib/cascader/cascader.d.ts +4 -5
  8. package/lib/cascader/cascader.less +1 -1
  9. package/lib/cascader/cascader.variable.css +1 -1
  10. package/lib/cascader/index.d.ts +12 -15
  11. package/lib/cascader/index.js +1 -1
  12. package/lib/components.d.ts +1 -0
  13. package/lib/components.js +1 -1
  14. package/lib/date-picker/date-picker.css +15 -0
  15. package/lib/date-picker/date-picker.d.ts +1 -1
  16. package/lib/date-picker/date-picker.less +18 -0
  17. package/lib/date-picker/date-picker.variable.css +15 -0
  18. package/lib/date-picker/index.d.ts +5 -3
  19. package/lib/date-picker/index.js +1 -1
  20. package/lib/date-picker/interface.d.ts +9 -0
  21. package/lib/date-picker/props.d.ts +39 -0
  22. package/lib/date-picker/time-picker.d.ts +381 -0
  23. package/lib/date-picker/utils.d.ts +22 -1
  24. package/lib/icon/enlarge-line.d.ts +4 -0
  25. package/lib/icon/enlarge-line.js +1 -0
  26. package/lib/icon/filliscreen-line.d.ts +4 -0
  27. package/lib/icon/filliscreen-line.js +1 -0
  28. package/lib/icon/folder.js +1 -0
  29. package/lib/icon/funnel.js +1 -1
  30. package/lib/icon/help-document-fill.js +1 -1
  31. package/lib/icon/help-fill.js +1 -1
  32. package/lib/icon/img-error.d.ts +4 -0
  33. package/lib/icon/img-error.js +1 -0
  34. package/lib/icon/img-placehoulder.d.ts +4 -0
  35. package/lib/icon/img-placehoulder.js +1 -0
  36. package/lib/icon/index.d.ts +9 -0
  37. package/lib/icon/index.js +1 -1
  38. package/lib/icon/left-turn-line.d.ts +4 -0
  39. package/lib/icon/left-turn-line.js +1 -0
  40. package/lib/icon/narrow-line.d.ts +4 -0
  41. package/lib/icon/narrow-line.js +1 -0
  42. package/lib/icon/original .d.ts +4 -0
  43. package/lib/icon/original .js +1 -0
  44. package/lib/icon/right-turn-line.d.ts +4 -0
  45. package/lib/icon/{help.js → right-turn-line.js} +1 -1
  46. package/lib/icon/unfull-screen.d.ts +4 -0
  47. package/lib/icon/unfull-screen.js +1 -0
  48. package/lib/image/image-viewer.css +142 -0
  49. package/lib/image/image-viewer.d.ts +73 -0
  50. package/lib/image/image-viewer.less +168 -0
  51. package/lib/image/image-viewer.variable.css +142 -0
  52. package/lib/image/image.css +37 -0
  53. package/lib/image/image.d.ts +93 -0
  54. package/lib/image/image.less +44 -0
  55. package/lib/image/image.variable.css +37 -0
  56. package/lib/image/index.d.ts +246 -0
  57. package/lib/image/index.js +1 -0
  58. package/lib/image/props.d.ts +71 -0
  59. package/lib/message/messageConstructor.d.ts +1 -1
  60. package/lib/notify/notifyConstructor.d.ts +2 -2
  61. package/lib/popover/index.d.ts +5 -5
  62. package/lib/popover/popover.d.ts +2 -2
  63. package/lib/popover2/index.d.ts +6 -0
  64. package/lib/popover2/index.js +1 -1
  65. package/lib/popover2/popover2.d.ts +2 -0
  66. package/lib/shared/dom.d.ts +1 -0
  67. package/lib/shared/index.js +1 -1
  68. package/lib/steps/index.d.ts +4 -4
  69. package/lib/steps/steps.d.ts +1 -1
  70. package/lib/styles/index.d.ts +1 -0
  71. package/lib/time-picker/index.d.ts +904 -0
  72. package/lib/time-picker/index.js +1 -0
  73. package/lib/time-picker/time-picker.css +215 -0
  74. package/lib/time-picker/time-picker.less +260 -0
  75. package/lib/time-picker/time-picker.variable.css +328 -0
  76. package/lib/upload/index.d.ts +27 -27
  77. package/lib/upload/index.js +1 -1
  78. package/lib/upload/upload.d.ts +7 -7
  79. package/package.json +1 -1
@@ -0,0 +1,381 @@
1
+ import type { DatePickerPanelType, SelectionModeType } from './interface';
2
+ declare const _default: import("vue").DefineComponent<{
3
+ disabledHours: {
4
+ readonly type: ArrayConstructor;
5
+ readonly default: () => any[];
6
+ };
7
+ disabledMinutes: {
8
+ readonly type: ArrayConstructor;
9
+ readonly default: () => any[];
10
+ };
11
+ disabledSeconds: {
12
+ readonly type: ArrayConstructor;
13
+ readonly default: () => any[];
14
+ };
15
+ hideDisabledOptions: {
16
+ readonly type: BooleanConstructor;
17
+ readonly default: false;
18
+ };
19
+ width: {
20
+ readonly type: NumberConstructor;
21
+ readonly default: 261;
22
+ };
23
+ enterMode: {
24
+ readonly type: BooleanConstructor;
25
+ readonly default: true;
26
+ };
27
+ type: {
28
+ type: import("vue").PropType<import("./interface").PickerTypeType>;
29
+ default: string;
30
+ validator(value: any): boolean;
31
+ };
32
+ allowCrossDay: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ extPopoverCls: {
37
+ readonly type: StringConstructor;
38
+ readonly default: "";
39
+ };
40
+ format: StringConstructor;
41
+ readonly: {
42
+ readonly type: BooleanConstructor;
43
+ readonly default: false;
44
+ };
45
+ disabled: {
46
+ readonly type: BooleanConstructor;
47
+ readonly default: false;
48
+ };
49
+ editable: {
50
+ readonly type: BooleanConstructor;
51
+ readonly default: true;
52
+ };
53
+ clearable: {
54
+ readonly type: BooleanConstructor;
55
+ readonly default: true;
56
+ };
57
+ open: {
58
+ readonly type: BooleanConstructor;
59
+ readonly default: any;
60
+ };
61
+ multiple: {
62
+ readonly type: BooleanConstructor;
63
+ readonly default: false;
64
+ };
65
+ timePickerOptions: {
66
+ readonly type: import("vue").PropType<Record<string, any>>;
67
+ readonly default: () => {};
68
+ };
69
+ splitPanels: {
70
+ readonly type: BooleanConstructor;
71
+ readonly default: true;
72
+ };
73
+ startDate: DateConstructor;
74
+ placeholder: {
75
+ readonly type: StringConstructor;
76
+ readonly default: "";
77
+ };
78
+ placement: {
79
+ readonly type: import("vue").PropType<import("@popperjs/core").ComputedPlacement>;
80
+ readonly default: "bottom-start";
81
+ readonly validator: (value: any) => boolean;
82
+ };
83
+ transfer: {
84
+ readonly type: BooleanConstructor;
85
+ readonly default: false;
86
+ };
87
+ appendToBody: {
88
+ readonly type: BooleanConstructor;
89
+ readonly default: false;
90
+ };
91
+ shortcuts: {
92
+ readonly type: import("vue").PropType<import("./interface").DatePickerShortcutsType>;
93
+ readonly default: () => any[];
94
+ };
95
+ shortcutClose: {
96
+ readonly type: BooleanConstructor;
97
+ readonly default: false;
98
+ };
99
+ modelValue: {
100
+ readonly type: import("vue").PropType<import("./interface").DatePickerValueType>;
101
+ };
102
+ value: {
103
+ readonly type: import("vue").PropType<import("./interface").DatePickerValueType>;
104
+ };
105
+ options: {
106
+ readonly type: ObjectConstructor;
107
+ readonly default: () => {};
108
+ };
109
+ fontSize: {
110
+ readonly type: import("vue").PropType<"large" | "normal" | "medium">;
111
+ readonly default: "normal";
112
+ };
113
+ upToNow: {
114
+ readonly type: BooleanConstructor;
115
+ readonly default: false;
116
+ };
117
+ useShortcutText: {
118
+ readonly type: BooleanConstructor;
119
+ readonly default: false;
120
+ };
121
+ shortcutSelectedIndex: {
122
+ readonly type: NumberConstructor;
123
+ readonly default: -1;
124
+ };
125
+ headerSlotCls: {
126
+ readonly type: StringConstructor;
127
+ readonly default: "";
128
+ };
129
+ footerSlotCls: {
130
+ readonly type: StringConstructor;
131
+ readonly default: "";
132
+ };
133
+ behavior: {
134
+ readonly type: import("vue").PropType<"normal" | "simplicity">;
135
+ readonly default: "normal";
136
+ readonly validator: (v: any) => boolean;
137
+ };
138
+ disableDate: import("vue").PropType<import("./interface").DisableDateType>;
139
+ withValidate: {
140
+ readonly type: BooleanConstructor;
141
+ readonly default: true;
142
+ };
143
+ }, {
144
+ panel: import("vue").ComputedRef<DatePickerPanelType>;
145
+ publicStringValue: import("vue").ComputedRef<any>;
146
+ opened: import("vue").ComputedRef<boolean>;
147
+ visualValue: import("vue").ComputedRef<any>;
148
+ displayValue: import("vue").ComputedRef<any>;
149
+ isConfirm: import("vue").ComputedRef<boolean>;
150
+ hasHeader: import("vue").ComputedRef<boolean>;
151
+ hasFooter: import("vue").ComputedRef<boolean>;
152
+ hasShortcuts: import("vue").ComputedRef<boolean>;
153
+ fontSizeCls: import("vue").ComputedRef<string>;
154
+ longWidthCls: import("vue").ComputedRef<string>;
155
+ localReadonly: import("vue").ComputedRef<boolean>;
156
+ allowCrossDayProp: import("vue").ComputedRef<boolean>;
157
+ ownPickerProps: import("vue").ComputedRef<{
158
+ disabledHours: unknown[];
159
+ disabledMinutes: unknown[];
160
+ disabledSeconds: unknown[];
161
+ hideDisabledOptions: boolean;
162
+ }>;
163
+ pickerDropdownRef: any;
164
+ inputRef: any;
165
+ triggerRef: import("vue").Ref<HTMLElement>;
166
+ pickerPanelRef: any;
167
+ handleClose: (e?: Event) => boolean;
168
+ handleIconClick: () => void;
169
+ handleInputMouseenter: () => void;
170
+ handleInputMouseleave: (_e: any) => void;
171
+ handleFocus: (e: any) => void;
172
+ handleBlur: (e: any) => void;
173
+ handleKeydown: (e: KeyboardEvent) => void;
174
+ handleInputChange: (e: any) => void;
175
+ handleClear: () => void;
176
+ handleTransferClick: () => void;
177
+ onPick: (_dates: any, visible: boolean, type: any, shortcut: any) => void;
178
+ onPickSuccess: () => void;
179
+ showClose: import("vue").Ref<boolean>;
180
+ visible: import("vue").Ref<boolean>;
181
+ internalValue: import("vue").Ref<any>;
182
+ disableClickOutSide: import("vue").Ref<boolean>;
183
+ disableCloseUnderTransfer: import("vue").Ref<boolean>;
184
+ selectionMode: import("vue").Ref<SelectionModeType>;
185
+ forceInputRerender: import("vue").Ref<number>;
186
+ isFocused: import("vue").Ref<boolean>;
187
+ focusedDate: import("vue").Ref<any>;
188
+ focusedTime: import("vue").Ref<{
189
+ column: number;
190
+ picker: number;
191
+ time: any;
192
+ active: boolean;
193
+ }>;
194
+ internalFocus: import("vue").Ref<boolean>;
195
+ timeEnterMode: import("vue").Ref<boolean>;
196
+ shortcut: import("vue").Ref<any>;
197
+ onSelectionModeChange: import("vue").Ref<(_type: any) => SelectionModeType>;
198
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "change" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change")[], "input" | "change" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
199
+ disabledHours: {
200
+ readonly type: ArrayConstructor;
201
+ readonly default: () => any[];
202
+ };
203
+ disabledMinutes: {
204
+ readonly type: ArrayConstructor;
205
+ readonly default: () => any[];
206
+ };
207
+ disabledSeconds: {
208
+ readonly type: ArrayConstructor;
209
+ readonly default: () => any[];
210
+ };
211
+ hideDisabledOptions: {
212
+ readonly type: BooleanConstructor;
213
+ readonly default: false;
214
+ };
215
+ width: {
216
+ readonly type: NumberConstructor;
217
+ readonly default: 261;
218
+ };
219
+ enterMode: {
220
+ readonly type: BooleanConstructor;
221
+ readonly default: true;
222
+ };
223
+ type: {
224
+ type: import("vue").PropType<import("./interface").PickerTypeType>;
225
+ default: string;
226
+ validator(value: any): boolean;
227
+ };
228
+ allowCrossDay: {
229
+ type: BooleanConstructor;
230
+ default: boolean;
231
+ };
232
+ extPopoverCls: {
233
+ readonly type: StringConstructor;
234
+ readonly default: "";
235
+ };
236
+ format: StringConstructor;
237
+ readonly: {
238
+ readonly type: BooleanConstructor;
239
+ readonly default: false;
240
+ };
241
+ disabled: {
242
+ readonly type: BooleanConstructor;
243
+ readonly default: false;
244
+ };
245
+ editable: {
246
+ readonly type: BooleanConstructor;
247
+ readonly default: true;
248
+ };
249
+ clearable: {
250
+ readonly type: BooleanConstructor;
251
+ readonly default: true;
252
+ };
253
+ open: {
254
+ readonly type: BooleanConstructor;
255
+ readonly default: any;
256
+ };
257
+ multiple: {
258
+ readonly type: BooleanConstructor;
259
+ readonly default: false;
260
+ };
261
+ timePickerOptions: {
262
+ readonly type: import("vue").PropType<Record<string, any>>;
263
+ readonly default: () => {};
264
+ };
265
+ splitPanels: {
266
+ readonly type: BooleanConstructor;
267
+ readonly default: true;
268
+ };
269
+ startDate: DateConstructor;
270
+ placeholder: {
271
+ readonly type: StringConstructor;
272
+ readonly default: "";
273
+ };
274
+ placement: {
275
+ readonly type: import("vue").PropType<import("@popperjs/core").ComputedPlacement>;
276
+ readonly default: "bottom-start";
277
+ readonly validator: (value: any) => boolean;
278
+ };
279
+ transfer: {
280
+ readonly type: BooleanConstructor;
281
+ readonly default: false;
282
+ };
283
+ appendToBody: {
284
+ readonly type: BooleanConstructor;
285
+ readonly default: false;
286
+ };
287
+ shortcuts: {
288
+ readonly type: import("vue").PropType<import("./interface").DatePickerShortcutsType>;
289
+ readonly default: () => any[];
290
+ };
291
+ shortcutClose: {
292
+ readonly type: BooleanConstructor;
293
+ readonly default: false;
294
+ };
295
+ modelValue: {
296
+ readonly type: import("vue").PropType<import("./interface").DatePickerValueType>;
297
+ };
298
+ value: {
299
+ readonly type: import("vue").PropType<import("./interface").DatePickerValueType>;
300
+ };
301
+ options: {
302
+ readonly type: ObjectConstructor;
303
+ readonly default: () => {};
304
+ };
305
+ fontSize: {
306
+ readonly type: import("vue").PropType<"large" | "normal" | "medium">;
307
+ readonly default: "normal";
308
+ };
309
+ upToNow: {
310
+ readonly type: BooleanConstructor;
311
+ readonly default: false;
312
+ };
313
+ useShortcutText: {
314
+ readonly type: BooleanConstructor;
315
+ readonly default: false;
316
+ };
317
+ shortcutSelectedIndex: {
318
+ readonly type: NumberConstructor;
319
+ readonly default: -1;
320
+ };
321
+ headerSlotCls: {
322
+ readonly type: StringConstructor;
323
+ readonly default: "";
324
+ };
325
+ footerSlotCls: {
326
+ readonly type: StringConstructor;
327
+ readonly default: "";
328
+ };
329
+ behavior: {
330
+ readonly type: import("vue").PropType<"normal" | "simplicity">;
331
+ readonly default: "normal";
332
+ readonly validator: (v: any) => boolean;
333
+ };
334
+ disableDate: import("vue").PropType<import("./interface").DisableDateType>;
335
+ withValidate: {
336
+ readonly type: BooleanConstructor;
337
+ readonly default: true;
338
+ };
339
+ }>> & {
340
+ onChange?: (...args: any[]) => any;
341
+ onInput?: (...args: any[]) => any;
342
+ "onUpdate:modelValue"?: (...args: any[]) => any;
343
+ onClear?: (...args: any[]) => any;
344
+ "onPick-success"?: (...args: any[]) => any;
345
+ "onOpen-change"?: (...args: any[]) => any;
346
+ "onShortcut-change"?: (...args: any[]) => any;
347
+ }, {
348
+ placement: import("@popperjs/core").ComputedPlacement;
349
+ options: Record<string, any>;
350
+ type: import("./interface").PickerTypeType;
351
+ disabled: boolean;
352
+ width: number;
353
+ placeholder: string;
354
+ fontSize: "large" | "normal" | "medium";
355
+ open: boolean;
356
+ multiple: boolean;
357
+ clearable: boolean;
358
+ readonly: boolean;
359
+ behavior: "normal" | "simplicity";
360
+ withValidate: boolean;
361
+ extPopoverCls: string;
362
+ editable: boolean;
363
+ timePickerOptions: {};
364
+ splitPanels: boolean;
365
+ transfer: boolean;
366
+ appendToBody: boolean;
367
+ shortcuts: import("./interface").DatePickerShortcutsType;
368
+ shortcutClose: boolean;
369
+ upToNow: boolean;
370
+ useShortcutText: boolean;
371
+ shortcutSelectedIndex: number;
372
+ headerSlotCls: string;
373
+ footerSlotCls: string;
374
+ allowCrossDay: boolean;
375
+ disabledHours: unknown[];
376
+ disabledMinutes: unknown[];
377
+ disabledSeconds: unknown[];
378
+ hideDisabledOptions: boolean;
379
+ enterMode: boolean;
380
+ }>;
381
+ export default _default;
@@ -1,5 +1,5 @@
1
1
  import type { InjectionKey } from 'vue';
2
- import type { IDatePickerCtx, PickerTypeType } from './interface';
2
+ import type { IDatePickerCtx, ITimePickerCtx, PickerTypeType } from './interface';
3
3
  export declare const RANGE_SEPARATOR = " - ";
4
4
  export declare const typeValueResolver: {
5
5
  default: {
@@ -74,6 +74,7 @@ export declare const DEFAULT_FORMATS: Record<PickerTypeType, string>;
74
74
  export declare const parseDate: (val: any, type: any, multiple: any, format: any) => any;
75
75
  export declare const formatDate: (val: any, type: any, multiple: any, format: any) => any;
76
76
  export declare const datePickerKey: InjectionKey<IDatePickerCtx>;
77
+ export declare const timePickerKey: InjectionKey<ITimePickerCtx>;
77
78
  /**
78
79
  * 寻找子组件
79
80
  *
@@ -95,3 +96,23 @@ export declare const formatDateLabels: (locale: any, format: any, date: any) =>
95
96
  };
96
97
  export declare const clearHours: (time: any) => number;
97
98
  export declare const isInRange: (time: any, a: any, b: any) => boolean;
99
+ /**
100
+ * firstUpperCase
101
+ *
102
+ * @param {string} str str
103
+ *
104
+ * @return {string} str
105
+ */
106
+ export declare function firstUpperCase(str: any): any;
107
+ /**
108
+ * 根据 date 设置 h, m, s
109
+ *
110
+ * @param {Date} date date 对象
111
+ * @param {number} h 小时数
112
+ * @param {number} m 分钟数
113
+ * @param {number} s 秒数
114
+ *
115
+ * @return {Date} date 对象
116
+ */
117
+ export declare const mergeDateHMS: (date: any, ...hms: any[]) => Date;
118
+ export declare const capitalize: (str: any) => any;
@@ -0,0 +1,4 @@
1
+ import { FunctionalComponent } from 'vue';
2
+ import { IIconBaseProps } from './icon';
3
+ declare const enlargeLine: FunctionalComponent<IIconBaseProps>;
4
+ export default enlargeLine;
@@ -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 a=r[e];if(void 0!==a)return a.exports;var o=r[e]={exports:{}};return t[e](o,o.exports,n),o.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 a={};return(()=>{n.r(a),n.d(a,{default:()=>s});var e=n(748);function t(r,n,a){return(0,e.h)(r.name,Object.assign(Object.assign({key:n},r.attributes),{style:"".concat(r.attributes.style," ").concat(a||"")}),(r.elements||[]).map((function(e,a){return t(e,"".concat(n,"-").concat(r.name,"-").concat(a))})))}Object.create,Object.create;var r=function(r,n){var a=Object.assign(Object.assign({},n.attrs),r),o=a.data,i=a.name,c=a.width,s=a.height,l=a.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 a=0;for(n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]])}return r}(a,["data","name","width","height","fill"]),u="width: ".concat(c,"; height: ").concat(s,"; fill: ").concat(l);return(0,e.createVNode)("span",p,[t(o,i,u)])};r.inheritAttrs=!1,r.displayName="bkIcon";const o=r;var i=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":{"d":"M885.76 840.64l-148.96-149.12a344.16 344.16 0 1 0-45.28 45.28l149.12 148.96a32 32 0 1 0 45.12-45.12ZM472 752A280 280 0 1 1 752 472 280.32 280.32 0 0 1 472 752Z"}},{"type":"element","name":"path","attributes":{"d":"M576 448H496V368a32 32 0 0 0-64 0v80H352a32 32 0 0 0 0 64h80v80a32 32 0 0 0 64 0V512h80a32 32 0 0 0 0-64Z"}}]}'),c=function(t,r){var n=Object.assign(Object.assign({},t),r.attrs);return(0,e.createVNode)(o,(0,e.mergeProps)(n,{data:i,name:"enlargeLine"}),null)};c.displayName="enlargeLine",c.inheritAttrs=!1;const s=c})(),a})()));
@@ -0,0 +1,4 @@
1
+ import { FunctionalComponent } from 'vue';
2
+ import { IIconBaseProps } from './icon';
3
+ declare const filliscreenLine: FunctionalComponent<IIconBaseProps>;
4
+ export default filliscreenLine;
@@ -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 a=r[e];if(void 0!==a)return a.exports;var o=r[e]={exports:{}};return t[e](o,o.exports,n),o.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 a={};return(()=>{n.r(a),n.d(a,{default:()=>c});var e=n(748);function t(r,n,a){return(0,e.h)(r.name,Object.assign(Object.assign({key:n},r.attributes),{style:"".concat(r.attributes.style," ").concat(a||"")}),(r.elements||[]).map((function(e,a){return t(e,"".concat(n,"-").concat(r.name,"-").concat(a))})))}Object.create,Object.create;var r=function(r,n){var a=Object.assign(Object.assign({},n.attrs),r),o=a.data,i=a.name,s=a.width,c=a.height,l=a.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 a=0;for(n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]])}return r}(a,["data","name","width","height","fill"]),u="width: ".concat(s,"; height: ").concat(c,"; fill: ").concat(l);return(0,e.createVNode)("span",p,[t(o,i,u)])};r.inheritAttrs=!1,r.displayName="bkIcon";const o=r;var i=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":{"d":"M128 384L192 384 192 192 384 192 384 128 128 128 128 384Z"}},{"type":"element","name":"path","attributes":{"d":"M640 128L640 192 832 192 832 384 896 384 896 128 640 128Z"}},{"type":"element","name":"path","attributes":{"d":"M192 640L128 640 128 896 384 896 384 832 192 832 192 640Z"}},{"type":"element","name":"path","attributes":{"d":"M832 832L640 832 640 896 896 896 896 640 832 640 832 832Z"}}]}'),s=function(t,r){var n=Object.assign(Object.assign({},t),r.attrs);return(0,e.createVNode)(o,(0,e.mergeProps)(n,{data:i,name:"filliscreenLine"}),null)};s.displayName="filliscreenLine",s.inheritAttrs=!1;const c=s})(),a})()));
@@ -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,c=o.name,i=o.width,s=o.height,l=o.fill,f=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"]),p="width: ".concat(i,"; height: ").concat(s,"; fill: ").concat(l);return(0,e.createVNode)("span",f,[t(a,c,p)])};r.inheritAttrs=!1,r.displayName="bkIcon";const a=r;var c=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":{"d":"M864 960h-704c-88.36266666666667 0-160-71.63733333333333-160-160v-640c0-53.034666666666666 42.96533333333333-96 96-96h256c53.034666666666666 0 96 42.96533333333333 96 96v32h416c88.36266666666667 0 160 71.63733333333333 160 160v448c0 88.36266666666667-71.63733333333333 160-160 160zM96 128c-17.663999999999998 0-32 14.336-32 32v640c0 53.034666666666666 42.96533333333333 96 96 96h704c53.034666666666666 0 96-42.96533333333333 96-96v-448c0-53.034666666666666-42.96533333333333-96-96-96h-448c-17.663999999999998 0-32-14.336-32-32v-64c0-17.663999999999998-14.336-32-32-32z"}}]}'),i=function(t,r){var n=Object.assign(Object.assign({},t),r.attrs);return(0,e.createVNode)(a,(0,e.mergeProps)(n,{data:c,name:"folder"}),null)};i.displayName="folder",i.inheritAttrs=!1;const s=i})(),o})()));
@@ -1 +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={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"]),f="width: ".concat(c,"; height: ").concat(l,"; fill: ").concat(s);return(0,n.createVNode)("span",u,[o(a,i,f)])};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 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M860.8 128H163.2a32 32 0 0 0-27.36 52l295.2 336 0.96 0V896l160-82.72V516.8l0.96 0 295.2-336A32 32 0 0 0 860.8 128Z"}}]}'),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:"funnel"}),null)};a.displayName="funnel",a.inheritAttrs=!1;const i=a})(),o})()));
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:()=>l});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,l=o.height,s=o.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}(o,["data","name","width","height","fill"]),f="width: ".concat(c,"; height: ").concat(l,"; fill: ").concat(s);return(0,e.createVNode)("span",u,[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 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M860.8 128H163.2a32 32 0 0 0-27.36 52l295.2 336 0.96 0V896l160-82.72V516.8l0.96 0 295.2-336A32 32 0 0 0 860.8 128Z"}}]}'),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:"funnel"}),null)};c.displayName="funnel",c.inheritAttrs=!1;const l=c})(),o})()));
@@ -1 +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={9430:(e,t,r)=>{r.d(t,{Z:()=>c});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,c=r.name,i=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(i,"; height: ").concat(l,"; fill: ").concat(s);return(0,n.createVNode)("span",u,[o(a,c,p)])};a.inheritAttrs=!1,a.displayName="bkIcon";const c=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:()=>c});var e=n(748),t=n(9430),r=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 64C264 64 64 264 64 512c0 57.6 11.2 113.6 32 166.4V896c0 17.6 14.4 32 32 32h217.6C576 1019.2 836.8 908.8 928 678.4S908.8 187.2 678.4 96C625.6 75.2 569.6 64 512 64zM500.8 721.6c-27.2 0-48-20.8-48-48s20.8-48 48-48c27.2 0 48 20.8 48 48S528 721.6 500.8 721.6zM587.2 507.2c-36.8 20.8-48 35.2-48 62.4v14.4H464v-16c-3.2-44.8 11.2-70.4 51.2-92.8 36.8-22.4 48-35.2 48-60.8s-20.8-44.8-52.8-44.8c-28.8-1.6-52.8 19.2-56 48 0 1.6 0 1.6 0 3.2h-76.8c1.6-70.4 49.6-118.4 136-118.4 80 0 132.8 44.8 132.8 110.4C648 454.4 627.2 484.8 587.2 507.2z"}}]}'),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:"helpDocumentFill"}),null)};a.displayName="helpDocumentFill",a.inheritAttrs=!1;const c=a})(),o})()));
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,c=o.name,i=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"]),u="width: ".concat(i,"; height: ").concat(s,"; fill: ").concat(l);return(0,e.createVNode)("span",p,[t(a,c,u)])};r.inheritAttrs=!1,r.displayName="bkIcon";const a=r;var c=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 64C264 64 64 264 64 512c0 57.6 11.2 113.6 32 166.4V896c0 17.6 14.4 32 32 32h217.6C576 1019.2 836.8 908.8 928 678.4S908.8 187.2 678.4 96C625.6 75.2 569.6 64 512 64zM500.8 721.6c-27.2 0-48-20.8-48-48s20.8-48 48-48c27.2 0 48 20.8 48 48S528 721.6 500.8 721.6zM587.2 507.2c-36.8 20.8-48 35.2-48 62.4v14.4H464v-16c-3.2-44.8 11.2-70.4 51.2-92.8 36.8-22.4 48-35.2 48-60.8s-20.8-44.8-52.8-44.8c-28.8-1.6-52.8 19.2-56 48 0 1.6 0 1.6 0 3.2h-76.8c1.6-70.4 49.6-118.4 136-118.4 80 0 132.8 44.8 132.8 110.4C648 454.4 627.2 484.8 587.2 507.2z"}}]}'),i=function(t,r){var n=Object.assign(Object.assign({},t),r.attrs);return(0,e.createVNode)(a,(0,e.mergeProps)(n,{data:c,name:"helpDocumentFill"}),null)};i.displayName="helpDocumentFill",i.inheritAttrs=!1;const s=i})(),o})()));
@@ -1 +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={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,s=r.height,l=r.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}(r,["data","name","width","height","fill"]),u="width: ".concat(c,"; height: ").concat(s,"; fill: ").concat(l);return(0,n.createVNode)("span",p,[o(a,i,u)])};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","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 64C264 64 64 264 64 512s200 448 448 448 448-200 448-448S760 64 512 64zM500.8 721.6c-27.2 0-48-20.8-48-48s20.8-48 48-48c27.2 0 48 20.8 48 48S528 721.6 500.8 721.6zM587.2 507.2c-36.8 20.8-48 35.2-48 62.4v14.4H464v-16c-3.2-44.8 11.2-70.4 51.2-92.8 36.8-22.4 48-35.2 48-60.8s-20.8-44.8-52.8-44.8c-28.8-1.6-52.8 19.2-56 48 0 1.6 0 1.6 0 3.2h-76.8c1.6-70.4 49.6-118.4 136-118.4 80 0 132.8 44.8 132.8 110.4C648 454.4 627.2 484.8 587.2 507.2z"}}]}'),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:"helpFill"}),null)};a.displayName="helpFill",a.inheritAttrs=!1;const i=a})(),o})()));
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",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","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 64C264 64 64 264 64 512s200 448 448 448 448-200 448-448S760 64 512 64zM500.8 721.6c-27.2 0-48-20.8-48-48s20.8-48 48-48c27.2 0 48 20.8 48 48S528 721.6 500.8 721.6zM587.2 507.2c-36.8 20.8-48 35.2-48 62.4v14.4H464v-16c-3.2-44.8 11.2-70.4 51.2-92.8 36.8-22.4 48-35.2 48-60.8s-20.8-44.8-52.8-44.8c-28.8-1.6-52.8 19.2-56 48 0 1.6 0 1.6 0 3.2h-76.8c1.6-70.4 49.6-118.4 136-118.4 80 0 132.8 44.8 132.8 110.4C648 454.4 627.2 484.8 587.2 507.2z"}}]}'),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:"helpFill"}),null)};c.displayName="helpFill",c.inheritAttrs=!1;const s=c})(),o})()));
@@ -0,0 +1,4 @@
1
+ import { FunctionalComponent } from 'vue';
2
+ import { IIconBaseProps } from './icon';
3
+ declare const imgError: FunctionalComponent<IIconBaseProps>;
4
+ export default imgError;
@@ -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 a in r)("object"==typeof exports?exports:e)[a]=r[a]}}(self,(e=>(()=>{"use strict";var t={9430:(e,t,r)=>{r.d(t,{Z:()=>i});var a=r(748);function n(e,t,r){return(0,a.h)(e.name,Object.assign(Object.assign({key:t},e.attributes),{style:"".concat(e.attributes.style," ").concat(r||"")}),(e.elements||[]).map((function(r,a){return n(r,"".concat(t,"-").concat(e.name,"-").concat(a))})))}Object.create,Object.create;var o=function(e,t){var r=Object.assign(Object.assign({},t.attrs),e),o=r.data,i=r.name,s=r.width,c=r.height,l=r.fill,p=function(e,t){var r={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&t.indexOf(a)<0&&(r[a]=e[a]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(a=Object.getOwnPropertySymbols(e);n<a.length;n++)t.indexOf(a[n])<0&&Object.prototype.propertyIsEnumerable.call(e,a[n])&&(r[a[n]]=e[a[n]])}return r}(r,["data","name","width","height","fill"]),u="width: ".concat(s,"; height: ").concat(c,"; fill: ").concat(l);return(0,a.createVNode)("span",p,[n(o,i,u)])};o.inheritAttrs=!1,o.displayName="bkIcon";const i=o},748:t=>{t.exports=e}},r={};function a(e){var n=r[e];if(void 0!==n)return n.exports;var o=r[e]={exports:{}};return t[e](o,o.exports,a),o.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var r in t)a.o(t,r)&&!a.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};return(()=>{a.r(n),a.d(n,{default:()=>i});var e=a(748),t=a(9430),r=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":{"d":"M752 512A176 176 0 1 0 928 688 176 176 0 0 0 752 512Zm0 299.2a30.88 30.88 0 1 1 30.88-30.88A30.72 30.72 0 0 1 752 811.2Zm16.96-92.32a17.12 17.12 0 0 1-33.92 0s-13.76-118.72-13.76-123.2a30.88 30.88 0 1 1 61.6 0C782.88 600.16 768.96 718.88 768.96 718.88Z"}},{"type":"element","name":"path","attributes":{"d":"M800 176H480l-44.32 89.44-23.36 89.44-70.24 85.6 30.88-85.6-46.88-89.44L336 240h0v-0.96L359.52 176H160a96 96 0 0 0-96 96V752a96 96 0 0 0 96 96H573.44A238.88 238.88 0 0 1 512 688a243.2 243.2 0 0 1 8.16-61.44L356.8 519.84a46.72 46.72 0 0 0-70.72 2.56L128 656V272a32 32 0 0 1 32-32h118.4L272 283.36l70.08 71.52L327.36 480l108.32-107.36L530.4 240H800a32 32 0 0 1 32 32V461.92A241.92 241.92 0 0 1 896 496V272A96 96 0 0 0 800 176Z"}},{"type":"element","name":"path","attributes":{"d":"M720 400A80 80 0 0 1 640 480 80 80 0 0 1 560 400 80 80 0 0 1 720 400z"}}]}'),o=function(a,n){var o=Object.assign(Object.assign({},a),n.attrs);return(0,e.createVNode)(t.Z,(0,e.mergeProps)(o,{data:r,name:"imgError"}),null)};o.displayName="imgError",o.inheritAttrs=!1;const i=o})(),n})()));
@@ -0,0 +1,4 @@
1
+ import { FunctionalComponent } from 'vue';
2
+ import { IIconBaseProps } from './icon';
3
+ declare const imgPlacehoulder: FunctionalComponent<IIconBaseProps>;
4
+ export default imgPlacehoulder;
@@ -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 a in r)("object"==typeof exports?exports:e)[a]=r[a]}}(self,(e=>(()=>{"use strict";var t={9430:(e,t,r)=>{r.d(t,{Z:()=>i});var a=r(748);function n(e,t,r){return(0,a.h)(e.name,Object.assign(Object.assign({key:t},e.attributes),{style:"".concat(e.attributes.style," ").concat(r||"")}),(e.elements||[]).map((function(r,a){return n(r,"".concat(t,"-").concat(e.name,"-").concat(a))})))}Object.create,Object.create;var o=function(e,t){var r=Object.assign(Object.assign({},t.attrs),e),o=r.data,i=r.name,c=r.width,l=r.height,s=r.fill,u=function(e,t){var r={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&t.indexOf(a)<0&&(r[a]=e[a]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(a=Object.getOwnPropertySymbols(e);n<a.length;n++)t.indexOf(a[n])<0&&Object.prototype.propertyIsEnumerable.call(e,a[n])&&(r[a[n]]=e[a[n]])}return r}(r,["data","name","width","height","fill"]),p="width: ".concat(c,"; height: ").concat(l,"; fill: ").concat(s);return(0,a.createVNode)("span",u,[n(o,i,p)])};o.inheritAttrs=!1,o.displayName="bkIcon";const i=o},748:t=>{t.exports=e}},r={};function a(e){var n=r[e];if(void 0!==n)return n.exports;var o=r[e]={exports:{}};return t[e](o,o.exports,a),o.exports}a.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return a.d(t,{a:t}),t},a.d=(e,t)=>{for(var r in t)a.o(t,r)&&!a.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},a.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};return(()=>{a.r(n),a.d(n,{default:()=>i});var e=a(748),t=a(9430),r=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":{"d":"M864 176H160a96 96 0 0 0-96 96V752a96 96 0 0 0 96 96H864a96 96 0 0 0 96-96V272A96 96 0 0 0 864 176ZM128 272a32 32 0 0 1 32-32H864a32 32 0 0 1 32 32V688l-144-114.72a57.76 57.76 0 0 0-56.32 0L592 672 356.8 439.84a46.72 46.72 0 0 0-70.72 2.56L128 656Z"}},{"type":"element","name":"path","attributes":{"d":"M752 400A96 96 0 0 1 656 496 96 96 0 0 1 560 400 96 96 0 0 1 752 400z"}}]}'),o=function(a,n){var o=Object.assign(Object.assign({},a),n.attrs);return(0,e.createVNode)(t.Z,(0,e.mergeProps)(o,{data:r,name:"imgPlacehoulder"}),null)};o.displayName="imgPlacehoulder",o.inheritAttrs=!1;const i=o})(),n})()));
@@ -31,10 +31,12 @@ export { default as DownShape } from '../icons/down-shape';
31
31
  export { default as DownSmall } from '../icons/down-small';
32
32
  export { default as EditLine } from '../icons/edit-line';
33
33
  export { default as Ellipsis } from '../icons/ellipsis';
34
+ export { default as EnlargeLine } from '../icons/enlarge-line';
34
35
  export { default as Error } from '../icons/error';
35
36
  export { default as ExcelFill } from '../icons/excel-fill';
36
37
  export { default as ExclamationCircleShape } from '../icons/exclamation-circle-shape';
37
38
  export { default as Eye } from '../icons/eye';
39
+ export { default as FilliscreenLine } from '../icons/filliscreen-line';
38
40
  export { default as FolderOpen } from '../icons/folder-open';
39
41
  export { default as FolderShapeOpen } from '../icons/folder-shape-open';
40
42
  export { default as FolderShape } from '../icons/folder-shape';
@@ -44,15 +46,21 @@ export { default as HelpDocumentFill } from '../icons/help-document-fill';
44
46
  export { default as HelpFill } from '../icons/help-fill';
45
47
  export { default as Help } from '../icons/help';
46
48
  export { default as ImageFill } from '../icons/image-fill';
49
+ export { default as ImgError } from '../icons/img-error';
50
+ export { default as ImgPlacehoulder } from '../icons/img-placehoulder';
47
51
  export { default as InfoLine } from '../icons/info-line';
48
52
  export { default as Info } from '../icons/info';
49
53
  export { default as LeftShape } from '../icons/left-shape';
54
+ export { default as LeftTurnLine } from '../icons/left-turn-line';
55
+ export { default as NarrowLine } from '../icons/narrow-line';
56
+ export { default as Original } from '../icons/original ';
50
57
  export { default as PdfFill } from '../icons/pdf-fill';
51
58
  export { default as PlayShape } from '../icons/play-shape';
52
59
  export { default as Plus } from '../icons/plus';
53
60
  export { default as PptFill } from '../icons/ppt-fill';
54
61
  export { default as Qq } from '../icons/qq';
55
62
  export { default as RightShape } from '../icons/right-shape';
63
+ export { default as RightTurnLine } from '../icons/right-turn-line';
56
64
  export { default as Search } from '../icons/search';
57
65
  export { default as Share } from '../icons/share';
58
66
  export { default as Spinner } from '../icons/spinner';
@@ -61,6 +69,7 @@ export { default as SwitcherLoading } from '../icons/switcher-loading';
61
69
  export { default as TextFile } from '../icons/text-file';
62
70
  export { default as TextFill } from '../icons/text-fill';
63
71
  export { default as TreeApplicationShape } from '../icons/tree-application-shape';
72
+ export { default as UnfullScreen } from '../icons/unfull-screen';
64
73
  export { default as Unvisible } from '../icons/unvisible';
65
74
  export { default as UpShape } from '../icons/up-shape';
66
75
  export { default as Upload } from '../icons/upload';