@g1cloud/bluesea 5.0.0-alpha.61 → 5.0.0-alpha.63
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/font.scss +1 -1
- package/css/transition.scss +14 -1
- package/dist/{BSAlertModal-CAR6eV-F.js → BSAlertModal-CLchDwLY.js} +1 -1
- package/dist/{BSYesNoModal-D5KCoyd2.js → BSYesNoModal-CwGNC2kU.js} +8 -10
- package/dist/bluesea.js +152 -151
- package/dist/bluesea.umd.cjs +760 -348
- package/dist/component/basic/BSButton.vue.d.ts +6 -0
- package/dist/component/basic/BSCalendar.vue.d.ts +2 -2
- package/dist/component/basic/BSLink.vue.d.ts +4 -0
- package/dist/component/global/BSAddressInput.vue.d.ts +3 -9
- package/dist/component/input/BSColorInput.vue.d.ts +66 -0
- package/dist/component/input/BSTextInput.vue.d.ts +2 -2
- package/dist/directive/vTooltip.d.ts +1 -0
- package/dist/{index-CNNHOv2f.js → index-DL2EAc-F.js} +905 -491
- package/dist/index.d.ts +1 -0
- package/dist/modal/BSModalFrame.vue.d.ts +4 -0
- package/dist/modal/modalPlugin.d.ts +1 -0
- package/dist/style.css +110 -44
- package/dist/util/elementUtil.d.ts +12 -0
- package/package.json +1 -1
package/css/font.scss
CHANGED
package/css/transition.scss
CHANGED
|
@@ -61,6 +61,19 @@
|
|
|
61
61
|
opacity: 0;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
+
//
|
|
65
|
+
// modal Transition
|
|
66
|
+
//
|
|
67
|
+
//.modal-enter-active,
|
|
68
|
+
//.modal-leave-active {
|
|
69
|
+
// transition: all 0.3s ease-out;
|
|
70
|
+
//}
|
|
71
|
+
//
|
|
72
|
+
//.modal-enter-from,
|
|
73
|
+
//.modal-leave-to {
|
|
74
|
+
// opacity: 0.4;
|
|
75
|
+
//}
|
|
76
|
+
|
|
64
77
|
|
|
65
78
|
//
|
|
66
79
|
// fade TransitionGroup
|
|
@@ -68,7 +81,7 @@
|
|
|
68
81
|
.fade-move,
|
|
69
82
|
.fade-enter-active,
|
|
70
83
|
.fade-leave-active {
|
|
71
|
-
transition: all
|
|
84
|
+
transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
|
|
72
85
|
}
|
|
73
86
|
|
|
74
87
|
.fade-enter-from,
|
|
@@ -1,5 +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 vFocusOnLoad, a as vT } from "./index-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, v as vFocusOnLoad, a as vT } from "./index-DL2EAc-F.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, 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, a as vT } from "./index-DL2EAc-F.js";
|
|
3
3
|
const _hoisted_1 = { class: "text-right" };
|
|
4
4
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
5
|
__name: "BSYesNoModal",
|
|
@@ -27,18 +27,16 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
27
27
|
buttons: withCtx(() => [
|
|
28
28
|
createElementVNode("div", _hoisted_1, [
|
|
29
29
|
createVNode(BSButton, {
|
|
30
|
-
caption: { key: "bs.
|
|
31
|
-
"button-color": "blue",
|
|
30
|
+
caption: { key: "bs.no" },
|
|
32
31
|
class: "min-w-80",
|
|
33
|
-
onClick:
|
|
32
|
+
onClick: clickNo
|
|
34
33
|
}),
|
|
35
|
-
|
|
36
|
-
caption: { key: "bs.
|
|
34
|
+
createVNode(BSButton, {
|
|
35
|
+
caption: { key: "bs.yes" },
|
|
36
|
+
"button-color": "blue",
|
|
37
37
|
class: "ml-8 min-w-80",
|
|
38
|
-
onClick:
|
|
39
|
-
}
|
|
40
|
-
[unref(vFocusOnLoad)]
|
|
41
|
-
])
|
|
38
|
+
onClick: clickYes
|
|
39
|
+
})
|
|
42
40
|
])
|
|
43
41
|
]),
|
|
44
42
|
default: withCtx(() => [
|
package/dist/bluesea.js
CHANGED
|
@@ -1,171 +1,172 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ag, ah, aW, aX, b, a1, a6, B, l, m, O, s, t, a3, p, i, a7, bu, j, q, r, N, c, J, L, K, a2, H, g, R, Q, Z, be, a4, _, I, X, Y, W, V, U, A, $, a5, n, k, e, E, o, h, w, x, G, z, P, a0, F, M, f, S, T, D, C, y, d, b2, b1, al, a9, by, a8, as, ap, am, b0, au, at, bC, a_, ar, a$, av, ad, ae, ac, af, aZ, aY, ao, aV, aR, bb, aC, bM, bk, b3, ba, b9, aj, aU, bm, ak, bx, bz, aq, bh, an, az, ai, aA, b8, aO, aP, aQ, aL, aN, aM, aK, aH, aE, bF, bs, bp, bD, b6, ab, bN, bK, bO, bL, aD, b7, aG, bP, b5, bE, bi, b4, bJ, bA, bc, bg, aS, aw, bl, br, bq, bj, bo, aF, aB, bn, bI, bv, bw, bB, bd, bf, u, aT, ax, ay, aa, a, aI, aJ, bH, bG, bt } from "./index-DL2EAc-F.js";
|
|
2
2
|
export {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
ag as ADDRESS_COUNTRY_CONFIGS,
|
|
4
|
+
ah as ADDRESS_COUNTRY_CONFIG_DEFAULT,
|
|
5
|
+
aW as AbstractFilter,
|
|
6
|
+
aX as AndFilter,
|
|
7
7
|
b as BLUESEA_VERSION,
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
a1 as BSAddressInput,
|
|
9
|
+
a6 as BSAlarmFrame,
|
|
10
10
|
B as BSButton,
|
|
11
11
|
l as BSCalendar,
|
|
12
12
|
m as BSCalendarRange,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
O as BSCardLayout,
|
|
14
|
+
s as BSCheckbox,
|
|
15
|
+
t as BSCheckboxGroup,
|
|
16
|
+
a3 as BSCodeEditor,
|
|
17
|
+
p as BSColorInput,
|
|
17
18
|
i as BSConsole,
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
a7 as BSContextMenuContainer,
|
|
20
|
+
bu as BSContextMenuPlugin,
|
|
20
21
|
j as BSDate,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
q as BSDateInput,
|
|
23
|
+
r as BSDateRange,
|
|
24
|
+
N as BSDateRangeFilter,
|
|
24
25
|
c as BSFormLabel,
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
J as BSGrid,
|
|
27
|
+
L as BSGridControl,
|
|
28
|
+
K as BSGridLookup,
|
|
29
|
+
a2 as BSImage,
|
|
30
|
+
H as BSImageUpload,
|
|
30
31
|
g as BSLink,
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
R as BSListControl,
|
|
33
|
+
Q as BSListLayout,
|
|
34
|
+
Z as BSLocaleSelect,
|
|
35
|
+
be as BSModal,
|
|
36
|
+
a4 as BSModalContainer,
|
|
36
37
|
_ as BSModalFrame,
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
38
|
+
I as BSMultiImageUpload,
|
|
39
|
+
X as BSMultiLangExpandButton,
|
|
40
|
+
Y as BSMultiLangImageUpload,
|
|
41
|
+
W as BSMultiLangRichText,
|
|
42
|
+
V as BSMultiLangTextArea,
|
|
43
|
+
U as BSMultiLangTextInput,
|
|
44
|
+
A as BSMultiSelect,
|
|
45
|
+
$ as BSNameInput,
|
|
46
|
+
a5 as BSNotificationContainer,
|
|
46
47
|
n as BSNumberInput,
|
|
47
48
|
k as BSPageNavigation,
|
|
48
49
|
e as BSPopupButton,
|
|
49
|
-
|
|
50
|
+
E as BSPopupSelect,
|
|
50
51
|
o as BSPriceInput,
|
|
51
52
|
h as BSProgressBar,
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
53
|
+
w as BSRadioButton,
|
|
54
|
+
x as BSRadioButtonGroup,
|
|
55
|
+
G as BSRichText,
|
|
56
|
+
z as BSSelect,
|
|
57
|
+
P as BSTabSheet,
|
|
58
|
+
a0 as BSTelInput,
|
|
59
|
+
F as BSTextArea,
|
|
60
|
+
M as BSTextFilter,
|
|
60
61
|
f as BSTextInput,
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
62
|
+
S as BSTree,
|
|
63
|
+
T as BSTreeControl,
|
|
64
|
+
D as BSTreeMultiSelect,
|
|
65
|
+
C as BSTreeSelect,
|
|
66
|
+
y as BSYesNoGroup,
|
|
66
67
|
d as BSYesNoSelect,
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
68
|
+
b2 as BetweenDateFilter,
|
|
69
|
+
b1 as BetweenFilter,
|
|
70
|
+
al as DEFAULT_GRID_COLUMN_WIDTH,
|
|
71
|
+
a9 as DefaultBody,
|
|
72
|
+
by as DefaultFrameContext,
|
|
73
|
+
a8 as DefaultHeader,
|
|
74
|
+
as as EditableInputGridHandlerImpl,
|
|
75
|
+
ap as EditablePageGridHandlerImpl,
|
|
76
|
+
am as EditingRows,
|
|
77
|
+
b0 as EqualFilter,
|
|
78
|
+
au as GridHandlerEditableSupport,
|
|
79
|
+
at as GridHandlerSelectDeleteSupport,
|
|
80
|
+
bC as I18NTexts,
|
|
81
|
+
a_ as InFilter,
|
|
82
|
+
ar as InputGridHandlerImpl,
|
|
83
|
+
a$ as LikeFilter,
|
|
84
|
+
av as LocalStorageGridPreferenceStore,
|
|
85
|
+
ad as NAME_INPUT_STYLE_2,
|
|
86
|
+
ae as NAME_INPUT_STYLE_3,
|
|
87
|
+
ac as NAME_INPUT_STYLE_DEFAULT,
|
|
88
|
+
af as NAME_INPUT_STYLE_JP,
|
|
89
|
+
aZ as NotFilter,
|
|
90
|
+
aY as OrFilter,
|
|
91
|
+
ao as PageGridHandlerImpl,
|
|
92
|
+
aV as PaginatedList,
|
|
93
|
+
aR as SavePointImpl,
|
|
94
|
+
bb as SearchParam,
|
|
95
|
+
aC as ValidationFailedError,
|
|
96
|
+
bM as addPrefixToMultiLangString,
|
|
97
|
+
bk as alarmEntries,
|
|
98
|
+
b3 as andFilter,
|
|
99
|
+
ba as betweenDateFilter,
|
|
100
|
+
b9 as betweenFilter,
|
|
101
|
+
aj as blueseaConfig,
|
|
102
|
+
aU as cancelProvidedSavePoint,
|
|
103
|
+
bm as closeAlarm,
|
|
104
|
+
ak as configureBluesea,
|
|
105
|
+
bx as createContextMenuPlugin,
|
|
106
|
+
bz as createDefaultFrameContext,
|
|
107
|
+
aq as createInputGridHandler,
|
|
108
|
+
bh as createModalPlugin,
|
|
109
|
+
an as createPageGridHandler,
|
|
110
|
+
az as createTreeHandler,
|
|
111
|
+
ai as defaultAddressInputComponentConfig,
|
|
112
|
+
aA as defaultExpandMultiLang,
|
|
113
|
+
b8 as equalFilter,
|
|
114
|
+
aO as executeBetweenLengthValidation,
|
|
115
|
+
aP as executeBetweenValueValidation,
|
|
116
|
+
aQ as executeDateRangeValidation,
|
|
117
|
+
aL as executeFieldValidationRule,
|
|
118
|
+
aN as executeRegExpValidation,
|
|
119
|
+
aM as executeRequiredValidation,
|
|
120
|
+
aK as fieldValidator,
|
|
121
|
+
aH as findFieldValidatorElements,
|
|
122
|
+
aE as formValidator,
|
|
123
|
+
bF as formatUtil,
|
|
124
|
+
bs as hideLoading,
|
|
125
|
+
bp as hideTooltip,
|
|
126
|
+
bD as i18n,
|
|
127
|
+
b6 as inFilter,
|
|
128
|
+
ab as interpretMultiLangText,
|
|
129
|
+
bN as isBlankMultiLangImageFile,
|
|
130
|
+
bK as isBlankMultiLangString,
|
|
131
|
+
bO as isMultiLangImageFileValidRequired,
|
|
132
|
+
bL as isMultiLangStringValidRequired,
|
|
133
|
+
aD as isValidationFailedError,
|
|
134
|
+
b7 as likeFilter,
|
|
135
|
+
aG as loadFieldValidator,
|
|
136
|
+
bP as localeNameProvider,
|
|
137
|
+
b5 as notFilter,
|
|
138
|
+
bE as notNull,
|
|
139
|
+
bi as notificationEntries,
|
|
140
|
+
b4 as orFilter,
|
|
141
|
+
bJ as parsePathParam,
|
|
142
|
+
bA as provideDefaultFrameContext,
|
|
143
|
+
bc as provideFieldContext,
|
|
144
|
+
bg as provideModalHandle,
|
|
145
|
+
aS as provideSavePoint,
|
|
146
|
+
aw as provideTabManager,
|
|
147
|
+
bl as showAlarm,
|
|
148
|
+
br as showLoading,
|
|
149
|
+
bq as showLoadingIcon,
|
|
150
|
+
bj as showNotification,
|
|
151
|
+
bo as showTooltip,
|
|
152
|
+
aF as storeFieldValidator,
|
|
153
|
+
aB as toggleDefaultExpandMultiLang,
|
|
154
|
+
bn as tooltipEntry,
|
|
155
|
+
bI as tryUntil,
|
|
156
|
+
bv as useContextMenu,
|
|
157
|
+
bw as useContextMenuOptional,
|
|
158
|
+
bB as useDefaultFrame,
|
|
159
|
+
bd as useFieldContext,
|
|
160
|
+
bf as useModal,
|
|
160
161
|
u as useModalHandle,
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
162
|
+
aT as useSavePoint,
|
|
163
|
+
ax as useTabManager,
|
|
164
|
+
ay as useTabManagerSilently,
|
|
165
|
+
aa as vClickOutside,
|
|
165
166
|
a as vT,
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
167
|
+
aI as validateField,
|
|
168
|
+
aJ as validateFields,
|
|
169
|
+
bH as waitDuring,
|
|
170
|
+
bG as waitUntil,
|
|
171
|
+
bt as withLoading
|
|
171
172
|
};
|