bm-admin-ui 1.0.81-alpha → 1.0.82-alpha

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 (41) hide show
  1. package/package.json +1 -1
  2. package/es/components/attachment/index.js +0 -273
  3. package/es/components/breadcrumb/index.js +0 -158
  4. package/es/components/button/index.js +0 -49
  5. package/es/components/edit-form/index.js +0 -1186
  6. package/es/components/editor/index.js +0 -12554
  7. package/es/components/feedback/index.js +0 -295
  8. package/es/components/float-table/index.js +0 -3511
  9. package/es/components/flow-designer/index.js +0 -1317
  10. package/es/components/form-create/index.js +0 -20978
  11. package/es/components/form-designer/index.js +0 -4514
  12. package/es/components/index.js +0 -19
  13. package/es/components/input-tags-display/index.js +0 -226
  14. package/es/components/over-tooltips/index.js +0 -133
  15. package/es/components/search-filter/index.js +0 -441
  16. package/es/components/select-all/index.js +0 -165
  17. package/es/components/shops-filter/index.js +0 -453
  18. package/es/components/staffs-selector/index.js +0 -728
  19. package/es/components/timeline/index.js +0 -168
  20. package/es/components/upload/index.js +0 -909
  21. package/es/components/videoView/index.js +0 -100
  22. package/lib/components/attachment/index.js +0 -278
  23. package/lib/components/breadcrumb/index.js +0 -168
  24. package/lib/components/button/index.js +0 -58
  25. package/lib/components/edit-form/index.js +0 -1195
  26. package/lib/components/editor/index.js +0 -12559
  27. package/lib/components/feedback/index.js +0 -309
  28. package/lib/components/float-table/index.js +0 -3516
  29. package/lib/components/flow-designer/index.js +0 -1329
  30. package/lib/components/form-create/index.js +0 -20990
  31. package/lib/components/form-designer/index.js +0 -4525
  32. package/lib/components/index.js +0 -140
  33. package/lib/components/input-tags-display/index.js +0 -237
  34. package/lib/components/over-tooltips/index.js +0 -138
  35. package/lib/components/search-filter/index.js +0 -451
  36. package/lib/components/select-all/index.js +0 -174
  37. package/lib/components/shops-filter/index.js +0 -465
  38. package/lib/components/staffs-selector/index.js +0 -733
  39. package/lib/components/timeline/index.js +0 -174
  40. package/lib/components/upload/index.js +0 -914
  41. package/lib/components/videoView/index.js +0 -105
@@ -1,105 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var withInstall = require('bm-admin-ui/lib/utils/with-install');
6
- var vue = require('vue');
7
- var iconsVue = require('@ant-design/icons-vue');
8
-
9
- var _export_sfc = (sfc, props) => {
10
- const target = sfc.__vccOpts || sfc;
11
- for (const [key, val] of props) {
12
- target[key] = val;
13
- }
14
- return target;
15
- };
16
-
17
- const _hoisted_1 = ["onClick"];
18
- const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("div", { class: "mask" }, null, -1);
19
- const _hoisted_3 = ["src"];
20
- const _hoisted_4 = ["src"];
21
- const _hoisted_5 = ["src"];
22
- const _hoisted_6 = ["src"];
23
- const _hoisted_7 = ["src"];
24
- const _hoisted_8 = ["src"];
25
- const _sfc_main = /* @__PURE__ */ vue.defineComponent({
26
- __name: "videoView",
27
- props: {
28
- src: {
29
- type: String,
30
- required: true
31
- },
32
- width: {
33
- type: String || Number,
34
- default: 102
35
- }
36
- },
37
- setup(__props) {
38
- const props = __props;
39
- const visible = vue.ref(false);
40
- const play = () => {
41
- visible.value = true;
42
- };
43
- return (_ctx, _cache) => {
44
- const _component_a_modal = vue.resolveComponent("a-modal");
45
- return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
46
- vue.createElementVNode("div", {
47
- class: "my_video",
48
- style: vue.normalizeStyle({ width: `${props.width}px`, height: `${props.width}px` }),
49
- onClick: vue.withModifiers(play, ["prevent"])
50
- }, [
51
- _hoisted_2,
52
- vue.createVNode(vue.unref(iconsVue.PlayCircleFilled), { class: "play" }),
53
- vue.createElementVNode("video", {
54
- src: props.src,
55
- muted: "",
56
- class: "video"
57
- }, [
58
- vue.createElementVNode("source", {
59
- src: props.src,
60
- type: "video/mp4"
61
- }, null, 8, _hoisted_4),
62
- vue.createElementVNode("source", {
63
- src: props.src,
64
- type: "video/mov"
65
- }, null, 8, _hoisted_5)
66
- ], 8, _hoisted_3)
67
- ], 12, _hoisted_1),
68
- vue.createVNode(_component_a_modal, {
69
- visible: visible.value,
70
- "onUpdate:visible": _cache[0] || (_cache[0] = ($event) => visible.value = $event),
71
- "destroy-on-close": "",
72
- centered: "",
73
- class: "my_video_modal",
74
- width: "1000px",
75
- footer: null
76
- }, {
77
- default: vue.withCtx(() => [
78
- vue.createElementVNode("video", {
79
- style: { "margin-top": "20px" },
80
- src: props.src,
81
- autoplay: "",
82
- controls: ""
83
- }, [
84
- vue.createElementVNode("source", {
85
- src: props.src,
86
- type: "video/mp4"
87
- }, null, 8, _hoisted_7),
88
- vue.createElementVNode("source", {
89
- src: props.src,
90
- type: "video/mov"
91
- }, null, 8, _hoisted_8)
92
- ], 8, _hoisted_6)
93
- ]),
94
- _: 1
95
- }, 8, ["visible"])
96
- ], 64);
97
- };
98
- }
99
- });
100
- var MyVideo = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "videoView.vue"]]);
101
-
102
- const BmVideo = withInstall.withInstall(MyVideo);
103
-
104
- exports.BmVideo = BmVideo;
105
- exports["default"] = BmVideo;