@g1cloud/bluesea 5.0.0-alpha.94 → 5.0.0-alpha.95
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/css/component.scss +2 -1
- package/css/frame/default.scss +27 -2
- package/css/utility.scss +12 -0
- package/css/variable.scss +3 -4
- package/dist/{BSAlertModal-CyLhWi4Z.js → BSAlertModal-CA_qogzh.js} +6 -18
- package/dist/{BSGridColumnSettingModal-BdE5gwTK.js → BSGridColumnSettingModal-CzFuR8DL.js} +1 -1
- package/dist/{BSYesNoModal-C79FnSRz.js → BSYesNoModal-BVLzVLm4.js} +1 -1
- package/dist/{BSYoutubeInputModal-BcsnOCBj.js → BSYoutubeInputModal-ZTkMjG3S.js} +1 -1
- package/dist/{ImageInsertModal-C0jLo583.js → ImageInsertModal-Dvu8HDdU.js} +4 -3
- package/dist/{ImageProperties.vue_vue_type_script_setup_true_lang-BNUD4Jvn.js → ImageProperties.vue_vue_type_script_setup_true_lang-hHZ_qJ3J.js} +1 -1
- package/dist/{ImagePropertiesModal-DnNs3pWi.js → ImagePropertiesModal-CF5R7YAU.js} +2 -2
- package/dist/{LinkPropertiesModal-7reCxlAi.js → LinkPropertiesModal-CG3nWiai.js} +1 -1
- package/dist/{TableInsertModal-CPUMFIGw.js → TableInsertModal-B2iUba-D.js} +1 -1
- package/dist/{VideoInsertModal-DJzt3PJY.js → VideoInsertModal-Cc8AulI6.js} +4 -3
- package/dist/{VideoProperties.vue_vue_type_script_setup_true_lang-DtjimxUo.js → VideoProperties.vue_vue_type_script_setup_true_lang-skG3PX31.js} +1 -1
- package/dist/{VideoPropertiesModal-CAF7Lk_Q.js → VideoPropertiesModal-D-T19edo.js} +2 -2
- package/dist/{YoutubeInsertModal-Yxoejon5.js → YoutubeInsertModal-BS9seBNT.js} +3 -3
- package/dist/{YoutubeProperties.vue_vue_type_script_setup_true_lang-DW3AGwQu.js → YoutubeProperties.vue_vue_type_script_setup_true_lang-CKqHqBAA.js} +1 -1
- package/dist/{YoutubePropertiesModal-C1HD5Etr.js → YoutubePropertiesModal-Baisl7mq.js} +2 -2
- package/dist/bluesea.js +195 -191
- package/dist/bluesea.umd.cjs +1288 -813
- package/dist/component/input/BSMultiSelect.vue.d.ts +3 -0
- package/dist/component/input/BSSelect.vue.d.ts +3 -0
- package/dist/component/input/BSSelectPopup.vue.d.ts +6 -0
- package/dist/component/tree/BSTreeRow.vue.d.ts +7 -6
- package/dist/component/tree/TreeLib.d.ts +6 -0
- package/dist/component/tree/TreeModel.d.ts +73 -3
- package/dist/contextmenu/contextMenuPlugin.d.ts +3 -1
- package/dist/directive/vFocusJump.d.ts +19 -0
- package/dist/directive/vFocusLoop.d.ts +25 -0
- package/dist/directive/vT.d.ts +1 -1
- package/dist/directive/vTooltip.d.ts +2 -2
- package/dist/frame/FrameModel.d.ts +18 -0
- package/dist/frame/ShortcutKeyHandler.d.ts +37 -0
- package/dist/frame/default/DefaultFrameModel.d.ts +8 -1
- package/dist/frame/default/DefaultHeader.vue.d.ts +14 -1
- package/dist/frame/default/HeaderTabListButton.vue.d.ts +2 -0
- package/dist/frame/default/HeaderTabs.vue.d.ts +14 -1
- package/dist/frame/default/SidebarMenuSearch.vue.d.ts +1 -3
- package/dist/{index-CQ7ikpUz.js → index-BP-wTyj1.js} +1359 -874
- package/dist/index.d.ts +5 -0
- package/dist/modal/BSModalFrame.vue.d.ts +2 -2
- package/dist/style.css +189 -112
- package/dist/util/debounceUtil.d.ts +6 -16
- package/dist/util/elementUtil.d.ts +12 -1
- package/dist/util/formatUtil.d.ts +9 -3
- package/package.json +1 -1
- package/text/bluesea_text_en.json +2 -26
- package/text/bluesea_text_ja.json +2 -26
- package/text/bluesea_text_ko.json +2 -26
- package/text/bluesea_text_zh.json +0 -24
package/css/component.scss
CHANGED
|
@@ -304,6 +304,7 @@
|
|
|
304
304
|
outline: 0;
|
|
305
305
|
background-color: $color-body-bg;
|
|
306
306
|
color: $color-body-text;
|
|
307
|
+
min-width: 64px;
|
|
307
308
|
|
|
308
309
|
&:hover > .selected {
|
|
309
310
|
border-color: $color-border-hover;
|
|
@@ -318,7 +319,7 @@
|
|
|
318
319
|
border: 1px solid $color-border;
|
|
319
320
|
border-radius: 2px;
|
|
320
321
|
padding: 0 6px;
|
|
321
|
-
min-width:
|
|
322
|
+
min-width: 100%;
|
|
322
323
|
cursor: pointer;
|
|
323
324
|
display: flex;
|
|
324
325
|
|
package/css/frame/default.scss
CHANGED
|
@@ -124,13 +124,14 @@ header.default-header {
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
.header-tabs {
|
|
127
|
-
margin: 0 16px;
|
|
127
|
+
margin: 0 4px 0 16px;
|
|
128
128
|
display: flex;
|
|
129
129
|
align-items: end;
|
|
130
130
|
gap: 1px;
|
|
131
131
|
flex-grow: 1;
|
|
132
132
|
align-self: end;
|
|
133
133
|
overflow-x: auto;
|
|
134
|
+
scrollbar-width: none;
|
|
134
135
|
|
|
135
136
|
.header-tab {
|
|
136
137
|
background-color: $color-header-tab;
|
|
@@ -143,7 +144,7 @@ header.default-header {
|
|
|
143
144
|
flex-grow: 1;
|
|
144
145
|
position: relative;
|
|
145
146
|
max-width: 180px;
|
|
146
|
-
min-width:
|
|
147
|
+
min-width: 48px;
|
|
147
148
|
color: $color-header-text;
|
|
148
149
|
cursor: pointer;
|
|
149
150
|
|
|
@@ -189,6 +190,30 @@ header.default-header {
|
|
|
189
190
|
}
|
|
190
191
|
}
|
|
191
192
|
}
|
|
193
|
+
|
|
194
|
+
.header-tab-list-button {
|
|
195
|
+
align-self: end;
|
|
196
|
+
|
|
197
|
+
.tab-list-button {
|
|
198
|
+
min-width: 20px;
|
|
199
|
+
height: 32px;
|
|
200
|
+
padding: 4px 2px;
|
|
201
|
+
border-top-left-radius: 4px;
|
|
202
|
+
border-top-right-radius: 4px;
|
|
203
|
+
color: $color-header-text;
|
|
204
|
+
background-color: $color-header-tab;
|
|
205
|
+
user-select: none;
|
|
206
|
+
cursor: pointer;
|
|
207
|
+
|
|
208
|
+
&:hover:not(:active) {
|
|
209
|
+
opacity: .8;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
&:active {
|
|
213
|
+
opacity: 1;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
192
217
|
}
|
|
193
218
|
|
|
194
219
|
html {
|
package/css/utility.scss
CHANGED
|
@@ -154,6 +154,14 @@
|
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
+
.min-w-0 {
|
|
158
|
+
min-width: 0 !important;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.min-h-0 {
|
|
162
|
+
min-height: 0 !important;
|
|
163
|
+
}
|
|
164
|
+
|
|
157
165
|
// display
|
|
158
166
|
|
|
159
167
|
@mixin display() {
|
|
@@ -799,3 +807,7 @@ $vertical-aligns: baseline, top, middle, bottom, text-bottom, text-top;
|
|
|
799
807
|
.cursor-default {
|
|
800
808
|
cursor: default !important;
|
|
801
809
|
}
|
|
810
|
+
|
|
811
|
+
.focus-outline-none:focus {
|
|
812
|
+
outline: none !important;
|
|
813
|
+
}
|
package/css/variable.scss
CHANGED
|
@@ -45,8 +45,8 @@ $blue: $primary-500 !default;
|
|
|
45
45
|
$blue-bg: $primary-200 !default;
|
|
46
46
|
$red: #EB0000 !default;
|
|
47
47
|
$red-bg: #FFE3E2 !default;
|
|
48
|
-
$orange: #F99341!default;
|
|
49
|
-
$orange-bg: #FFF8DE!default;
|
|
48
|
+
$orange: #F99341 !default;
|
|
49
|
+
$orange-bg: #FFF8DE !default;
|
|
50
50
|
$green: #2FA04D !default;
|
|
51
51
|
$green-bg: #E9FEE7 !default;
|
|
52
52
|
$purple: #945BD9 !default;
|
|
@@ -234,8 +234,7 @@ $gray-bg-dark: $gray-500;
|
|
|
234
234
|
$purple-bg,
|
|
235
235
|
$gray,
|
|
236
236
|
$gray-bg,
|
|
237
|
-
)
|
|
238
|
-
{
|
|
237
|
+
) {
|
|
239
238
|
--header-bg-color: #{$header-bg};
|
|
240
239
|
--header-text-color: #{$header-text};
|
|
241
240
|
--body-bg-color: #{$body-bg};
|
|
@@ -1,20 +1,5 @@
|
|
|
1
1
|
import { defineComponent, openBlock, createBlock, withCtx, createElementVNode, withDirectives, createVNode, unref } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, v as vT } from "./index-
|
|
3
|
-
function doFocus(el) {
|
|
4
|
-
el.focus();
|
|
5
|
-
}
|
|
6
|
-
const vFocusOnLoad = {
|
|
7
|
-
mounted: (el, binding) => {
|
|
8
|
-
if (binding.value === void 0 || String(binding.value) === "true" || typeof binding.value === "number") {
|
|
9
|
-
if (typeof binding.value === "number") {
|
|
10
|
-
setTimeout(() => doFocus(el), binding.value);
|
|
11
|
-
} else {
|
|
12
|
-
doFocus(el);
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
};
|
|
17
|
-
const vFocusOnLoad$1 = vFocusOnLoad;
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, v as vFocusOnLoad, i as vT } from "./index-BP-wTyj1.js";
|
|
18
3
|
const _hoisted_1 = { class: "text-right" };
|
|
19
4
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
20
5
|
__name: "BSAlertModal",
|
|
@@ -35,7 +20,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
35
20
|
modalHandle.close();
|
|
36
21
|
};
|
|
37
22
|
return (_ctx, _cache) => {
|
|
38
|
-
return openBlock(), createBlock(_sfc_main$1, {
|
|
23
|
+
return openBlock(), createBlock(_sfc_main$1, {
|
|
24
|
+
title: _ctx.title,
|
|
25
|
+
"auto-focus": ""
|
|
26
|
+
}, {
|
|
39
27
|
buttons: withCtx(() => [
|
|
40
28
|
createElementVNode("div", _hoisted_1, [
|
|
41
29
|
withDirectives(createVNode(BSButton, {
|
|
@@ -45,7 +33,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
45
33
|
"data-id": "okBtn",
|
|
46
34
|
onClick: clickOk
|
|
47
35
|
}, null, 512), [
|
|
48
|
-
[unref(vFocusOnLoad
|
|
36
|
+
[unref(vFocusOnLoad)]
|
|
49
37
|
])
|
|
50
38
|
])
|
|
51
39
|
]),
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, openBlock, createBlock, withCtx, createVNode, mergeProps, unref, toHandlers, createElementVNode, nextTick } from "vue";
|
|
2
|
-
import { d as createInputGridHandler, u as useModalHandle, _ as _sfc_main$1, f as _sfc_main$2, g as _sfc_main$3, h as _sfc_main$4, B as BSButton, n as notNull } from "./index-
|
|
2
|
+
import { d as createInputGridHandler, u as useModalHandle, _ as _sfc_main$1, f as _sfc_main$2, g as _sfc_main$3, h as _sfc_main$4, B as BSButton, n as notNull } from "./index-BP-wTyj1.js";
|
|
3
3
|
const _hoisted_1 = { class: "text-center" };
|
|
4
4
|
const _hoisted_2 = { class: "text-center" };
|
|
5
5
|
const _hoisted_3 = { class: "bs-layout-horizontal" };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, withDirectives, unref } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton,
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, i as vT } from "./index-BP-wTyj1.js";
|
|
3
3
|
const _hoisted_1 = { class: "text-right" };
|
|
4
4
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
5
|
__name: "BSYesNoModal",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, useModel, ref, openBlock, createBlock, withCtx, createElementVNode, createVNode, unref, createCommentVNode } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton, e as extractYoutubeVideoId } from "./index-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton, e as extractYoutubeVideoId } from "./index-BP-wTyj1.js";
|
|
3
3
|
import YouTube from "vue3-youtube";
|
|
4
4
|
const _hoisted_1 = { class: "bs-layout-vertical gap-16" };
|
|
5
5
|
const _hoisted_2 = { class: "bs-layout-horizontal align-items-center" };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, computed, ref, openBlock, createBlock, withCtx, createVNode, withDirectives, createElementVNode, vShow } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, a as _sfc_main$2, b as _sfc_main$3, c as _sfc_main$4, B as BSButton } from "./index-
|
|
3
|
-
import { _ as _sfc_main$5 } from "./ImageProperties.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, a as _sfc_main$2, b as _sfc_main$3, c as _sfc_main$4, B as BSButton } from "./index-BP-wTyj1.js";
|
|
3
|
+
import { _ as _sfc_main$5 } from "./ImageProperties.vue_vue_type_script_setup_true_lang-hHZ_qJ3J.js";
|
|
4
4
|
const _hoisted_1 = { class: "bs-layout-form title-w-8" };
|
|
5
5
|
const _hoisted_2 = { class: "title" };
|
|
6
6
|
const _hoisted_3 = { class: "bs-layout-horizontal justify-content-end gap-8" };
|
|
@@ -36,7 +36,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
36
36
|
};
|
|
37
37
|
const close = () => modalHandle.close();
|
|
38
38
|
modalHandle.setDefaultStyle({
|
|
39
|
-
width: "540px"
|
|
39
|
+
width: "540px",
|
|
40
|
+
height: "460px"
|
|
40
41
|
});
|
|
41
42
|
return (_ctx, _cache) => {
|
|
42
43
|
return openBlock(), createBlock(_sfc_main$1, { title: { key: "bs.richtext.insertImage" } }, {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, openBlock, createElementBlock, Fragment, createElementVNode, createVNode, withDirectives, unref, createTextVNode } from "vue";
|
|
2
|
-
import { b as _sfc_main$1, c as _sfc_main$2,
|
|
2
|
+
import { b as _sfc_main$1, c as _sfc_main$2, i as vT } from "./index-BP-wTyj1.js";
|
|
3
3
|
const _hoisted_1 = { class: "title" };
|
|
4
4
|
const _hoisted_2 = { class: "title" };
|
|
5
5
|
const _hoisted_3 = { class: "title" };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, computed, ref, onMounted, useTemplateRef, openBlock, createBlock, withCtx, createElementBlock, createElementVNode, createVNode, createCommentVNode } from "vue";
|
|
2
|
-
import {
|
|
3
|
-
import { _ as _sfc_main$4 } from "./ImageProperties.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { j as findImageNode, u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton, k as imageInfoNumberToPixel, l as formValidator } from "./index-BP-wTyj1.js";
|
|
3
|
+
import { _ as _sfc_main$4 } from "./ImageProperties.vue_vue_type_script_setup_true_lang-hHZ_qJ3J.js";
|
|
4
4
|
const _hoisted_1 = { class: "title" };
|
|
5
5
|
const _hoisted_2 = { class: "bs-layout-horizontal justify-content-end gap-8" };
|
|
6
6
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, openBlock, createBlock, withCtx, createElementVNode, createVNode, createTextVNode, withModifiers } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton } from "./index-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton } from "./index-BP-wTyj1.js";
|
|
3
3
|
const _hoisted_1 = { class: "bs-layout-form title-w-8" };
|
|
4
4
|
const _hoisted_2 = { class: "title" };
|
|
5
5
|
const _hoisted_3 = { class: "title" };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, openBlock, createBlock, withCtx, createElementVNode, createVNode } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, h as _sfc_main$3, B as BSButton } from "./index-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, h as _sfc_main$3, B as BSButton } from "./index-BP-wTyj1.js";
|
|
3
3
|
const _hoisted_1 = { class: "bs-layout-form" };
|
|
4
4
|
const _hoisted_2 = { class: "bs-form-label" };
|
|
5
5
|
const _hoisted_3 = { class: "bs-form-label" };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, computed, ref, openBlock, createBlock, withCtx, createVNode, withDirectives, createElementVNode, vShow } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, a as _sfc_main$2, b as _sfc_main$3, c as _sfc_main$4, B as BSButton } from "./index-
|
|
3
|
-
import { _ as _sfc_main$5 } from "./VideoProperties.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, a as _sfc_main$2, b as _sfc_main$3, c as _sfc_main$4, B as BSButton } from "./index-BP-wTyj1.js";
|
|
3
|
+
import { _ as _sfc_main$5 } from "./VideoProperties.vue_vue_type_script_setup_true_lang-skG3PX31.js";
|
|
4
4
|
const _hoisted_1 = { class: "bs-layout-form title-w-8" };
|
|
5
5
|
const _hoisted_2 = { class: "title" };
|
|
6
6
|
const _hoisted_3 = { class: "bs-layout-horizontal justify-content-end gap-8" };
|
|
@@ -36,7 +36,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
36
36
|
};
|
|
37
37
|
const close = () => modalHandle.close();
|
|
38
38
|
modalHandle.setDefaultStyle({
|
|
39
|
-
width: "540px"
|
|
39
|
+
width: "540px",
|
|
40
|
+
height: "460px"
|
|
40
41
|
});
|
|
41
42
|
return (_ctx, _cache) => {
|
|
42
43
|
return openBlock(), createBlock(_sfc_main$1, { title: { key: "bs.richtext.insertVideo" } }, {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, openBlock, createElementBlock, Fragment, createElementVNode, createVNode, withDirectives, unref, createTextVNode } from "vue";
|
|
2
|
-
import { g as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3,
|
|
2
|
+
import { g as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, i as vT } from "./index-BP-wTyj1.js";
|
|
3
3
|
const _hoisted_1 = { class: "bs-layout-horizontal gap-8" };
|
|
4
4
|
const _hoisted_2 = { class: "title" };
|
|
5
5
|
const _hoisted_3 = { class: "title" };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, computed, ref, onMounted, useTemplateRef, openBlock, createBlock, withCtx, createElementBlock, createElementVNode, createVNode, createCommentVNode } from "vue";
|
|
2
|
-
import {
|
|
3
|
-
import { _ as _sfc_main$4 } from "./VideoProperties.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { p as findVideoNode, u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton, q as videoInfoNumberToPixel, l as formValidator } from "./index-BP-wTyj1.js";
|
|
3
|
+
import { _ as _sfc_main$4 } from "./VideoProperties.vue_vue_type_script_setup_true_lang-skG3PX31.js";
|
|
4
4
|
const _hoisted_1 = { class: "title" };
|
|
5
5
|
const _hoisted_2 = { class: "bs-layout-horizontal justify-content-end gap-8" };
|
|
6
6
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, computed, ref, openBlock, createBlock, withCtx, createElementVNode, createVNode } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton, y as youtubeInfoNumberToPixel } from "./index-
|
|
3
|
-
import { _ as _sfc_main$4 } from "./YoutubeProperties.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton, y as youtubeInfoNumberToPixel } from "./index-BP-wTyj1.js";
|
|
3
|
+
import { _ as _sfc_main$4 } from "./YoutubeProperties.vue_vue_type_script_setup_true_lang-CKqHqBAA.js";
|
|
4
4
|
const _hoisted_1 = { class: "bs-layout-form" };
|
|
5
5
|
const _hoisted_2 = { class: "title" };
|
|
6
6
|
const _hoisted_3 = { class: "bs-layout-horizontal justify-content-end gap-8" };
|
|
@@ -29,7 +29,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
29
29
|
const close = () => modalHandle.close();
|
|
30
30
|
modalHandle.setDefaultStyle({
|
|
31
31
|
width: "540px",
|
|
32
|
-
height: "
|
|
32
|
+
height: "460px"
|
|
33
33
|
});
|
|
34
34
|
return (_ctx, _cache) => {
|
|
35
35
|
return openBlock(), createBlock(_sfc_main$1, { title: { key: "bs.richtext.youtube" } }, {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, openBlock, createElementBlock, Fragment, createElementVNode, createVNode, withDirectives, unref, createTextVNode } from "vue";
|
|
2
|
-
import { b as _sfc_main$1, c as _sfc_main$2,
|
|
2
|
+
import { b as _sfc_main$1, c as _sfc_main$2, i as vT } from "./index-BP-wTyj1.js";
|
|
3
3
|
const _hoisted_1 = { class: "title" };
|
|
4
4
|
const _hoisted_2 = { class: "title" };
|
|
5
5
|
const _hoisted_3 = { class: "title" };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, computed, ref, onMounted, openBlock, createBlock, withCtx, createElementBlock, createElementVNode, createVNode, createCommentVNode } from "vue";
|
|
2
|
-
import {
|
|
3
|
-
import { _ as _sfc_main$4 } from "./YoutubeProperties.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { m as findYoutubeNode, o as normalizeYoutubeInfoData, u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton, y as youtubeInfoNumberToPixel } from "./index-BP-wTyj1.js";
|
|
3
|
+
import { _ as _sfc_main$4 } from "./YoutubeProperties.vue_vue_type_script_setup_true_lang-CKqHqBAA.js";
|
|
4
4
|
const _hoisted_1 = {
|
|
5
5
|
key: 0,
|
|
6
6
|
class: "bs-layout-form"
|