@g1cloud/bluesea 5.0.0-beta.12 → 5.0.0-beta.14
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/bluesea.css +32 -9
- package/dist/{BSAlertModal-BfWpbkD6.js → BSAlertModal-CF_JTmhi.js} +1 -1
- package/dist/{BSGridColumnSettingModal-B8Gx-v5o.js → BSGridColumnSettingModal-Cx7oqsyb.js} +1 -1
- package/dist/{BSRichTextMaximizedModal-CzxAi2Mu.js → BSRichTextMaximizedModal-51YcW4Ml.js} +1 -1
- package/dist/{BSYesNoModal-BlJQbq-o.js → BSYesNoModal-C6_FunXV.js} +1 -1
- package/dist/{BSYoutubeInputModal-3nE_pxtk.js → BSYoutubeInputModal-DmQZMtJ_.js} +1 -1
- package/dist/{ImageInsertModal-DsxHM0m4.js → ImageInsertModal-DH0cfB5D.js} +2 -2
- package/dist/{ImageProperties.vue_vue_type_script_setup_true_lang-CD0rP9qD.js → ImageProperties.vue_vue_type_script_setup_true_lang-BAfBNS3t.js} +1 -1
- package/dist/{ImagePropertiesModal-BrTlcbFf.js → ImagePropertiesModal-BrR5bkLN.js} +2 -2
- package/dist/{LinkPropertiesModal-DmQDJbM2.js → LinkPropertiesModal-b-R8bfjK.js} +1 -1
- package/dist/{TableInsertModal-B7BY6Jkp.js → TableInsertModal-BoOcP8EU.js} +1 -1
- package/dist/{TablePropertiesModal-CwoxynRQ.js → TablePropertiesModal-DAVdW1Ds.js} +1 -1
- package/dist/{VideoInsertModal-RHRrVuDV.js → VideoInsertModal-PR-DONIh.js} +2 -2
- package/dist/{VideoProperties.vue_vue_type_script_setup_true_lang-CASR-eCt.js → VideoProperties.vue_vue_type_script_setup_true_lang-CZC00R1a.js} +1 -1
- package/dist/{VideoPropertiesModal-DbqNLp_J.js → VideoPropertiesModal-GuGVIRso.js} +2 -2
- package/dist/{YoutubeInsertModal-bNmH48Xv.js → YoutubeInsertModal-DGnlllWV.js} +2 -2
- package/dist/{YoutubeProperties.vue_vue_type_script_setup_true_lang-Cu7Tj7sq.js → YoutubeProperties.vue_vue_type_script_setup_true_lang-BXXoeaXn.js} +1 -1
- package/dist/{YoutubePropertiesModal-DiN3WTqt.js → YoutubePropertiesModal-1fqFfuqp.js} +2 -2
- package/dist/bluesea.css +26 -8
- package/dist/bluesea.js +46 -45
- package/dist/bluesea.umd.cjs +281 -72
- package/dist/component/grid/GridLib.d.ts +2 -1
- package/dist/component/input/BSNumberInput.vue.d.ts +5 -0
- package/dist/component/input/BSPriceInput.vue.d.ts +5 -0
- package/dist/component/tree/BSTreeRow.vue.d.ts +3 -3
- package/dist/component/tree/TreeLib.d.ts +20 -0
- package/dist/component/tree/TreeModel.d.ts +5 -1
- package/dist/frame/default/DefaultFrameModel.d.ts +1 -0
- package/dist/{index-4fq2AMj_.js → index-lj_R2xa0.js} +341 -132
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/css/bluesea.css
CHANGED
|
@@ -18681,6 +18681,19 @@ html {
|
|
|
18681
18681
|
min-width: 100%;
|
|
18682
18682
|
}
|
|
18683
18683
|
|
|
18684
|
+
.bs-popup-button.icon-only > button {
|
|
18685
|
+
border: 0 !important;
|
|
18686
|
+
padding: 4px 0;
|
|
18687
|
+
}
|
|
18688
|
+
|
|
18689
|
+
.bs-popup-button.icon-only > button > .font-icon {
|
|
18690
|
+
font-size: 1.2rem;
|
|
18691
|
+
}
|
|
18692
|
+
|
|
18693
|
+
.bs-popup-button.icon-only > button > .font-icon.right {
|
|
18694
|
+
display: none;
|
|
18695
|
+
}
|
|
18696
|
+
|
|
18684
18697
|
.bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap, .bs-text-input {
|
|
18685
18698
|
display: inline-flex;
|
|
18686
18699
|
flex-direction: column;
|
|
@@ -25384,24 +25397,33 @@ html {
|
|
|
25384
25397
|
position: relative;
|
|
25385
25398
|
align-items: center;
|
|
25386
25399
|
height: 28px;
|
|
25387
|
-
padding: 0
|
|
25400
|
+
padding: 0 3px;
|
|
25388
25401
|
border-radius: 4px;
|
|
25389
25402
|
cursor: pointer;
|
|
25403
|
+
border: 1px solid transparent;
|
|
25404
|
+
}
|
|
25405
|
+
|
|
25406
|
+
.bs-tree-row .row-caption.selected {
|
|
25407
|
+
background-color: var(--blue-bg);
|
|
25408
|
+
}
|
|
25409
|
+
|
|
25410
|
+
.bs-tree-row .row-caption.selected .caption {
|
|
25411
|
+
color: var(--blue);
|
|
25412
|
+
font-weight: bold;
|
|
25413
|
+
}
|
|
25414
|
+
|
|
25415
|
+
.bs-tree-row .row-caption.focused {
|
|
25416
|
+
border: 1px solid var(--blue);
|
|
25390
25417
|
}
|
|
25391
25418
|
|
|
25392
25419
|
.bs-tree-row .row-caption .caption {
|
|
25393
|
-
padding:
|
|
25420
|
+
padding: 3px;
|
|
25394
25421
|
cursor: pointer;
|
|
25395
25422
|
user-select: none;
|
|
25396
25423
|
flex-grow: 1;
|
|
25397
25424
|
white-space: nowrap;
|
|
25398
25425
|
}
|
|
25399
25426
|
|
|
25400
|
-
.bs-tree-row .row-caption .caption.selected {
|
|
25401
|
-
color: var(--blue);
|
|
25402
|
-
font-weight: bold;
|
|
25403
|
-
}
|
|
25404
|
-
|
|
25405
25427
|
.bs-tree-row .row-caption > .expand-icon {
|
|
25406
25428
|
transform: rotate(-90deg);
|
|
25407
25429
|
transition: transform 300ms ease;
|
|
@@ -25468,6 +25490,7 @@ html {
|
|
|
25468
25490
|
.bs-tree {
|
|
25469
25491
|
overflow: auto;
|
|
25470
25492
|
position: relative;
|
|
25493
|
+
outline: 0;
|
|
25471
25494
|
}
|
|
25472
25495
|
|
|
25473
25496
|
.bs-tree > .tree-wrap {
|
|
@@ -30001,12 +30024,12 @@ div[data-v-c1655c12] {
|
|
|
30001
30024
|
padding: 8px;
|
|
30002
30025
|
}
|
|
30003
30026
|
|
|
30004
|
-
.bs-button[data-v-
|
|
30027
|
+
.bs-button[data-v-487255f8] {
|
|
30005
30028
|
padding: 3px;
|
|
30006
30029
|
height: auto;
|
|
30007
30030
|
}
|
|
30008
30031
|
|
|
30009
|
-
.bs-button[data-v-
|
|
30032
|
+
.bs-button[data-v-487255f8] .font-icon {
|
|
30010
30033
|
font-size: 12px;
|
|
30011
30034
|
}
|
|
30012
30035
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, createBlock, openBlock, withCtx, withDirectives, createElementVNode, unref, createVNode } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, v as vT, B as BSButton, j as vFocusOnLoad } from "./index-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, v as vT, B as BSButton, j as vFocusOnLoad } from "./index-lj_R2xa0.js";
|
|
3
3
|
const _hoisted_1 = { class: "text-right" };
|
|
4
4
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
5
|
__name: "BSAlertModal",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, createBlock, openBlock, withCtx, createElementVNode, createVNode, mergeProps, unref, toHandlers, nextTick } from "vue";
|
|
2
|
-
import { f as createInputGridHandler, u as useModalHandle, _ as _sfc_main$1, B as BSButton, g as _sfc_main$2, h as _sfc_main$3, i as _sfc_main$4, n as notNull } from "./index-
|
|
2
|
+
import { f as createInputGridHandler, u as useModalHandle, _ as _sfc_main$1, B as BSButton, g as _sfc_main$2, h as _sfc_main$3, i as _sfc_main$4, n as notNull } from "./index-lj_R2xa0.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, mergeModels, useModel, useTemplateRef, createBlock, openBlock } from "vue";
|
|
2
|
-
import { u as useModalHandle, d as _sfc_main$1 } from "./index-
|
|
2
|
+
import { u as useModalHandle, d as _sfc_main$1 } from "./index-lj_R2xa0.js";
|
|
3
3
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
4
4
|
__name: "BSRichTextMaximizedModal",
|
|
5
5
|
props: /* @__PURE__ */ mergeModels({
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, createBlock, openBlock, withCtx, withDirectives, createElementVNode, unref, createVNode } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, v as vT, B as BSButton } from "./index-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, v as vT, B as BSButton } from "./index-lj_R2xa0.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, createBlock, openBlock, withCtx, createElementVNode, createVNode, createCommentVNode, unref } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3, e as extractYoutubeVideoId } from "./index-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3, e as extractYoutubeVideoId } from "./index-lj_R2xa0.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, createBlock, openBlock, withCtx, createElementVNode, createVNode, withDirectives, vShow } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, a as _sfc_main$2, b as _sfc_main$3, c as _sfc_main$4 } 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, B as BSButton, a as _sfc_main$2, b as _sfc_main$3, c as _sfc_main$4 } from "./index-lj_R2xa0.js";
|
|
3
|
+
import { _ as _sfc_main$5 } from "./ImageProperties.vue_vue_type_script_setup_true_lang-BAfBNS3t.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" };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, createElementBlock, openBlock, Fragment, createElementVNode, createVNode, withDirectives, createTextVNode, unref } from "vue";
|
|
2
|
-
import { b as _sfc_main$1, c as _sfc_main$2, v as vT } from "./index-
|
|
2
|
+
import { b as _sfc_main$1, c as _sfc_main$2, v as vT } from "./index-lj_R2xa0.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, createBlock, openBlock, withCtx, createElementVNode, createVNode, createElementBlock, createCommentVNode } from "vue";
|
|
2
|
-
import { o as findImageNode, u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3, m as formValidator, p as imageInfoNumberToPixel } from "./index-
|
|
3
|
-
import { _ as _sfc_main$4 } from "./ImageProperties.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { o as findImageNode, u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3, m as formValidator, p as imageInfoNumberToPixel } from "./index-lj_R2xa0.js";
|
|
3
|
+
import { _ as _sfc_main$4 } from "./ImageProperties.vue_vue_type_script_setup_true_lang-BAfBNS3t.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, createBlock, openBlock, withCtx, createElementVNode, createVNode, createTextVNode, withModifiers } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3 } from "./index-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3 } from "./index-lj_R2xa0.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, createBlock, openBlock, withCtx, createElementVNode, createVNode } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, h as _sfc_main$3 } from "./index-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, h as _sfc_main$3 } from "./index-lj_R2xa0.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,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, computed, ref, onMounted, useTemplateRef, createBlock, openBlock, withCtx, createElementVNode, createVNode, createElementBlock, createCommentVNode, withDirectives, createTextVNode, unref, Fragment, renderList, toDisplayString } from "vue";
|
|
2
|
-
import { k as componentUtil, u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3, v as vT, l as _sfc_main$4, m as formValidator } from "./index-
|
|
2
|
+
import { k as componentUtil, u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3, v as vT, l as _sfc_main$4, m as formValidator } from "./index-lj_R2xa0.js";
|
|
3
3
|
const findTableNode = (selection, type) => {
|
|
4
4
|
const head = selection.$head;
|
|
5
5
|
let depth = head.depth;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, computed, ref, createBlock, openBlock, withCtx, createElementVNode, createVNode, withDirectives, vShow } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, a as _sfc_main$2, b as _sfc_main$3, c as _sfc_main$4 } 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, B as BSButton, a as _sfc_main$2, b as _sfc_main$3, c as _sfc_main$4 } from "./index-lj_R2xa0.js";
|
|
3
|
+
import { _ as _sfc_main$5 } from "./VideoProperties.vue_vue_type_script_setup_true_lang-CZC00R1a.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" };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, createElementBlock, openBlock, Fragment, createElementVNode, createVNode, withDirectives, createTextVNode, unref } from "vue";
|
|
2
|
-
import { i as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, v as vT } from "./index-
|
|
2
|
+
import { i as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, v as vT } from "./index-lj_R2xa0.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, createBlock, openBlock, withCtx, createElementVNode, createVNode, createElementBlock, createCommentVNode } from "vue";
|
|
2
|
-
import { s as findVideoNode, u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3, m as formValidator, t as videoInfoNumberToPixel } from "./index-
|
|
3
|
-
import { _ as _sfc_main$4 } from "./VideoProperties.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { s as findVideoNode, u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3, m as formValidator, t as videoInfoNumberToPixel } from "./index-lj_R2xa0.js";
|
|
3
|
+
import { _ as _sfc_main$4 } from "./VideoProperties.vue_vue_type_script_setup_true_lang-CZC00R1a.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, createBlock, openBlock, withCtx, createElementVNode, createVNode } from "vue";
|
|
2
|
-
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3, 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 BSButton, b as _sfc_main$2, c as _sfc_main$3, y as youtubeInfoNumberToPixel } from "./index-lj_R2xa0.js";
|
|
3
|
+
import { _ as _sfc_main$4 } from "./YoutubeProperties.vue_vue_type_script_setup_true_lang-BXXoeaXn.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" };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, createElementBlock, openBlock, Fragment, createElementVNode, createVNode, withDirectives, createTextVNode, unref } from "vue";
|
|
2
|
-
import { b as _sfc_main$1, c as _sfc_main$2, v as vT } from "./index-
|
|
2
|
+
import { b as _sfc_main$1, c as _sfc_main$2, v as vT } from "./index-lj_R2xa0.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, createBlock, openBlock, withCtx, createElementVNode, createVNode, createElementBlock, createCommentVNode } from "vue";
|
|
2
|
-
import { q as findYoutubeNode, r as normalizeYoutubeInfoData, u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3, y as youtubeInfoNumberToPixel } from "./index-
|
|
3
|
-
import { _ as _sfc_main$4 } from "./YoutubeProperties.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { q as findYoutubeNode, r as normalizeYoutubeInfoData, u as useModalHandle, _ as _sfc_main$1, B as BSButton, b as _sfc_main$2, c as _sfc_main$3, y as youtubeInfoNumberToPixel } from "./index-lj_R2xa0.js";
|
|
3
|
+
import { _ as _sfc_main$4 } from "./YoutubeProperties.vue_vue_type_script_setup_true_lang-BXXoeaXn.js";
|
|
4
4
|
const _hoisted_1 = {
|
|
5
5
|
key: 0,
|
|
6
6
|
class: "bs-layout-form"
|
package/dist/bluesea.css
CHANGED
|
@@ -1553,6 +1553,16 @@
|
|
|
1553
1553
|
.bs-popup-button .bs-context-menu {
|
|
1554
1554
|
position: absolute;
|
|
1555
1555
|
min-width: 100%;
|
|
1556
|
+
}
|
|
1557
|
+
.bs-popup-button.icon-only > button {
|
|
1558
|
+
border: 0 !important;
|
|
1559
|
+
padding: 4px 0;
|
|
1560
|
+
}
|
|
1561
|
+
.bs-popup-button.icon-only > button > .font-icon {
|
|
1562
|
+
font-size: 1.2rem;
|
|
1563
|
+
}
|
|
1564
|
+
.bs-popup-button.icon-only > button > .font-icon.right {
|
|
1565
|
+
display: none;
|
|
1556
1566
|
}.bs-box-component-wrap, .bs-select-wrap, .bs-input-wrap, .bs-text-input {
|
|
1557
1567
|
display: inline-flex;
|
|
1558
1568
|
flex-direction: column;
|
|
@@ -7100,21 +7110,28 @@ to {
|
|
|
7100
7110
|
position: relative;
|
|
7101
7111
|
align-items: center;
|
|
7102
7112
|
height: 28px;
|
|
7103
|
-
padding: 0
|
|
7113
|
+
padding: 0 3px;
|
|
7104
7114
|
border-radius: 4px;
|
|
7105
7115
|
cursor: pointer;
|
|
7116
|
+
border: 1px solid transparent;
|
|
7117
|
+
}
|
|
7118
|
+
.bs-tree-row .row-caption.selected {
|
|
7119
|
+
background-color: var(--blue-bg);
|
|
7120
|
+
}
|
|
7121
|
+
.bs-tree-row .row-caption.selected .caption {
|
|
7122
|
+
color: var(--blue);
|
|
7123
|
+
font-weight: bold;
|
|
7124
|
+
}
|
|
7125
|
+
.bs-tree-row .row-caption.focused {
|
|
7126
|
+
border: 1px solid var(--blue);
|
|
7106
7127
|
}
|
|
7107
7128
|
.bs-tree-row .row-caption .caption {
|
|
7108
|
-
padding:
|
|
7129
|
+
padding: 3px;
|
|
7109
7130
|
cursor: pointer;
|
|
7110
7131
|
user-select: none;
|
|
7111
7132
|
flex-grow: 1;
|
|
7112
7133
|
white-space: nowrap;
|
|
7113
7134
|
}
|
|
7114
|
-
.bs-tree-row .row-caption .caption.selected {
|
|
7115
|
-
color: var(--blue);
|
|
7116
|
-
font-weight: bold;
|
|
7117
|
-
}
|
|
7118
7135
|
.bs-tree-row .row-caption > .expand-icon {
|
|
7119
7136
|
transform: rotate(-90deg);
|
|
7120
7137
|
transition: transform 300ms ease;
|
|
@@ -7166,6 +7183,7 @@ to {
|
|
|
7166
7183
|
}.bs-tree {
|
|
7167
7184
|
overflow: auto;
|
|
7168
7185
|
position: relative;
|
|
7186
|
+
outline: 0;
|
|
7169
7187
|
}
|
|
7170
7188
|
.bs-tree > .tree-wrap {
|
|
7171
7189
|
min-width: max-content;
|
|
@@ -10898,11 +10916,11 @@ span.table-property[data-v-537f70be]:after {
|
|
|
10898
10916
|
}
|
|
10899
10917
|
.bs-list-layout-item > .list-item-content {
|
|
10900
10918
|
padding: 8px;
|
|
10901
|
-
}.bs-button[data-v-
|
|
10919
|
+
}.bs-button[data-v-487255f8] {
|
|
10902
10920
|
padding: 3px;
|
|
10903
10921
|
height: auto;
|
|
10904
10922
|
}
|
|
10905
|
-
.bs-button[data-v-
|
|
10923
|
+
.bs-button[data-v-487255f8] .font-icon {
|
|
10906
10924
|
font-size: 12px;
|
|
10907
10925
|
}.bs-horizontal-layout-resizer {
|
|
10908
10926
|
cursor: ew-resize;
|
package/dist/bluesea.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { aK, aL, bI, bJ, w, am, aw, B, H, I, a6, i, P, ao, L, D, ax,
|
|
1
|
+
import { aK, aL, bI, bJ, w, am, aw, B, H, I, a6, i, P, ao, L, D, ax, cq, F, M, as, N, a4, a5, at, O, b, g, a2, a1, a9, ap, an, Z, A, a8, a7, E, aj, c8, au, _, $, ag, ai, ah, af, ae, ad, T, ak, av, h, G, K, aq, z, W, a0, J, C, Q, l, d, S, ar, a, al, X, a3, c, ab, ac, V, U, aa, R, x, bQ, b8, bP, aU, az, cv, ay, a$, aZ, aW, Y, bO, b1, b0, cA, bG, bM, a_, bS, bR, bN, cu, b2, aT, aH, aI, aG, aJ, bL, bK, aY, bH, bx, c2, cz, bc, bj, c1, cJ, ce, bT, b_, bZ, aQ, bA, cg, aR, cp, b7, ct, cw, f, cb, aX, bf, cN, aM, b4, bg, aN, aP, aO, b6, bY, bu, bv, bw, br, bt, bs, e, bq, bn, m, cC, aS, b5, cn, cj, cB, bW, aC, cK, cH, cL, bB, cI, bC, c0, b$, ck, bk, bX, bm, bi, cM, b3, c7, c6, aV, bV, n, cc, bU, cG, cx, c3, ca, by, b9, bd, bF, c5, bD, bE, cf, cm, cl, cd, ci, bl, aB, bh, ch, cF, cr, cs, cy, c4, c9, u, bz, ba, bb, be, aA, aE, aF, j, v, aD, bo, bp, cE, cD, co } from "./index-lj_R2xa0.js";
|
|
2
2
|
export {
|
|
3
3
|
aK as ADDRESS_COUNTRY_CONFIGS,
|
|
4
4
|
aL as ADDRESS_COUNTRY_CONFIG_DEFAULT,
|
|
@@ -17,7 +17,7 @@ export {
|
|
|
17
17
|
L as BSColorInput,
|
|
18
18
|
D as BSConsole,
|
|
19
19
|
ax as BSContextMenuContainer,
|
|
20
|
-
|
|
20
|
+
cq as BSContextMenuPlugin,
|
|
21
21
|
F as BSDate,
|
|
22
22
|
M as BSDateInput,
|
|
23
23
|
as as BSDateInputPopup,
|
|
@@ -39,7 +39,7 @@ export {
|
|
|
39
39
|
a7 as BSListLayout,
|
|
40
40
|
E as BSLoadingIcon,
|
|
41
41
|
aj as BSLocaleSelect,
|
|
42
|
-
|
|
42
|
+
c8 as BSModal,
|
|
43
43
|
au as BSModalContainer,
|
|
44
44
|
_ as BSModalFrame,
|
|
45
45
|
$ as BSMultiImageUpload,
|
|
@@ -83,7 +83,7 @@ export {
|
|
|
83
83
|
bP as BetweenFilter,
|
|
84
84
|
aU as DEFAULT_GRID_COLUMN_WIDTH,
|
|
85
85
|
az as DefaultBody,
|
|
86
|
-
|
|
86
|
+
cv as DefaultFrameContext,
|
|
87
87
|
ay as DefaultHeader,
|
|
88
88
|
a$ as EditableInputGridHandlerImpl,
|
|
89
89
|
aZ as EditablePageGridHandlerImpl,
|
|
@@ -92,14 +92,14 @@ export {
|
|
|
92
92
|
bO as EqualFilter,
|
|
93
93
|
b1 as GridHandlerEditableSupport,
|
|
94
94
|
b0 as GridHandlerSelectDeleteSupport,
|
|
95
|
-
|
|
95
|
+
cA as I18NTexts,
|
|
96
96
|
bG as IllegalAccessError,
|
|
97
97
|
bM as InFilter,
|
|
98
98
|
a_ as InputGridHandlerImpl,
|
|
99
99
|
bS as IsNotNullFilter,
|
|
100
100
|
bR as IsNullFilter,
|
|
101
101
|
bN as LikeFilter,
|
|
102
|
-
|
|
102
|
+
cu as LocalStorageFavoriteMenuHandler,
|
|
103
103
|
b2 as LocalStorageGridPreferenceStore,
|
|
104
104
|
aT as MediaObjectUrlStore,
|
|
105
105
|
aH as NAME_INPUT_STYLE_2,
|
|
@@ -112,28 +112,28 @@ export {
|
|
|
112
112
|
bH as PaginatedList,
|
|
113
113
|
bx as SavePointImpl,
|
|
114
114
|
c2 as SearchParam,
|
|
115
|
-
|
|
115
|
+
cz as ShortcutKeyHandler,
|
|
116
116
|
bc as TabStatusManagerImpl,
|
|
117
117
|
bj as ValidationFailedError,
|
|
118
118
|
c1 as acceptFilter,
|
|
119
|
-
|
|
120
|
-
|
|
119
|
+
cJ as addPrefixToMultiLangString,
|
|
120
|
+
ce as alarmEntries,
|
|
121
121
|
bT as andFilter,
|
|
122
122
|
b_ as betweenDateFilter,
|
|
123
123
|
bZ as betweenFilter,
|
|
124
124
|
aQ as blueseaConfig,
|
|
125
125
|
bA as cancelProvidedSavePoint,
|
|
126
|
-
|
|
126
|
+
cg as closeAlarm,
|
|
127
127
|
aR as configureBluesea,
|
|
128
|
-
|
|
128
|
+
cp as contextMenuPluginKey,
|
|
129
129
|
b7 as convertDateRangePresetKey,
|
|
130
|
-
|
|
131
|
-
|
|
130
|
+
ct as createContextMenuPlugin,
|
|
131
|
+
cw as createDefaultFrameContext,
|
|
132
132
|
f as createInputGridHandler,
|
|
133
|
-
|
|
133
|
+
cb as createModalPlugin,
|
|
134
134
|
aX as createPageGridHandler,
|
|
135
135
|
bf as createTreeHandler,
|
|
136
|
-
|
|
136
|
+
cN as debounce,
|
|
137
137
|
aM as defaultAddressInputComponentConfig,
|
|
138
138
|
b4 as defaultCellFormatter,
|
|
139
139
|
bg as defaultExpandMultiLang,
|
|
@@ -152,61 +152,62 @@ export {
|
|
|
152
152
|
bq as fieldValidator,
|
|
153
153
|
bn as findFieldValidatorElements,
|
|
154
154
|
m as formValidator,
|
|
155
|
-
|
|
155
|
+
cC as formatUtil,
|
|
156
156
|
aS as getMediaType,
|
|
157
157
|
b5 as gridExcelDownloadExtension,
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
158
|
+
cn as hideLoading,
|
|
159
|
+
cj as hideTooltip,
|
|
160
|
+
cB as i18n,
|
|
161
161
|
bW as inFilter,
|
|
162
162
|
aC as interpretMultiLangText,
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
163
|
+
cK as isBlankMultiLangImageFile,
|
|
164
|
+
cH as isBlankMultiLangString,
|
|
165
|
+
cL as isMultiLangImageFileValidRequired,
|
|
166
166
|
bB as isMultiLangMessage,
|
|
167
|
-
|
|
167
|
+
cI as isMultiLangStringValidRequired,
|
|
168
168
|
bC as isNameEmpty,
|
|
169
169
|
c0 as isNotNullFilter,
|
|
170
170
|
b$ as isNullFilter,
|
|
171
|
-
|
|
171
|
+
ck as isTooltipDisplayed,
|
|
172
172
|
bk as isValidationFailedError,
|
|
173
173
|
bX as likeFilter,
|
|
174
174
|
bm as loadFieldValidator,
|
|
175
175
|
bi as localeBasedExtraItemValidationRules,
|
|
176
|
-
|
|
176
|
+
cM as localeNameProvider,
|
|
177
177
|
b3 as mergeSameValueVertical,
|
|
178
|
-
|
|
179
|
-
|
|
178
|
+
c7 as modalHandleKey,
|
|
179
|
+
c6 as modalPluginKey,
|
|
180
180
|
aV as nameFilterCreator,
|
|
181
181
|
bV as notFilter,
|
|
182
182
|
n as notNull,
|
|
183
|
-
|
|
183
|
+
cc as notificationEntries,
|
|
184
184
|
bU as orFilter,
|
|
185
|
-
|
|
186
|
-
|
|
185
|
+
cG as parsePathParam,
|
|
186
|
+
cx as provideDefaultFrameContext,
|
|
187
187
|
c3 as provideFieldContext,
|
|
188
|
-
|
|
188
|
+
ca as provideModalHandle,
|
|
189
189
|
by as provideSavePoint,
|
|
190
190
|
b9 as provideTabManager,
|
|
191
191
|
bd as provideTabStatusManager,
|
|
192
192
|
bF as serializeAddress,
|
|
193
|
+
c5 as serializeMoney,
|
|
193
194
|
bD as serializeName,
|
|
194
195
|
bE as serializeTel,
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
196
|
+
cf as showAlarm,
|
|
197
|
+
cm as showLoading,
|
|
198
|
+
cl as showLoadingIcon,
|
|
199
|
+
cd as showNotification,
|
|
200
|
+
ci as showTooltip,
|
|
200
201
|
bl as storeFieldValidator,
|
|
201
202
|
aB as t,
|
|
202
203
|
bh as toggleDefaultExpandMultiLang,
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
204
|
+
ch as tooltipEntry,
|
|
205
|
+
cF as tryUntil,
|
|
206
|
+
cr as useContextMenu,
|
|
207
|
+
cs as useContextMenuOptional,
|
|
208
|
+
cy as useDefaultFrame,
|
|
208
209
|
c4 as useFieldContext,
|
|
209
|
-
|
|
210
|
+
c9 as useModal,
|
|
210
211
|
u as useModalHandle,
|
|
211
212
|
bz as useSavePoint,
|
|
212
213
|
ba as useTabManager,
|
|
@@ -220,7 +221,7 @@ export {
|
|
|
220
221
|
aD as vTooltip,
|
|
221
222
|
bo as validateField,
|
|
222
223
|
bp as validateFields,
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
224
|
+
cE as waitDuring,
|
|
225
|
+
cD as waitUntil,
|
|
226
|
+
co as withLoading
|
|
226
227
|
};
|