@g1cloud/bluesea 5.0.0-alpha.55 → 5.0.0-alpha.57
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 +22 -0
- package/css/layout.scss +16 -0
- package/dist/{AddressSearchModal-CMFk-hEB.js → AddressSearchModal-NeviUwaZ.js} +1 -1
- package/dist/{BSAlertModal-BNtAe_Wt.js → BSAlertModal-aZNKtEZY.js} +1 -1
- package/dist/{BSYesNoModal-CnZ4qUcR.js → BSYesNoModal-BYeJCSxI.js} +1 -1
- package/dist/bluesea.js +1 -1
- package/dist/bluesea.umd.cjs +472 -289
- package/dist/component/grid/BSGrid.vue.d.ts +6 -0
- package/dist/component/grid/BSGridCellCheckbox.vue.d.ts +2 -0
- package/dist/component/grid/BSGridRow.vue.d.ts +6 -0
- package/dist/component/grid/GridModel.d.ts +8 -1
- package/dist/component/input/BSCheckbox.vue.d.ts +2 -0
- package/dist/component/input/BSCheckboxGroup.vue.d.ts +3 -0
- package/dist/component/input/BSDateInput.vue.d.ts +2 -0
- package/dist/component/input/BSDateRange.vue.d.ts +2 -0
- package/dist/component/input/BSDateRangePresets.vue.d.ts +4 -2
- package/dist/component/input/BSMultiImageUpload.vue.d.ts +2 -0
- package/dist/component/input/BSMultiSelect.vue.d.ts +3 -0
- package/dist/component/input/BSNumberInput.vue.d.ts +2 -0
- package/dist/component/input/BSPriceInput.vue.d.ts +2 -0
- package/dist/component/input/BSRadioButtonGroup.vue.d.ts +3 -0
- package/dist/component/input/BSTextInput.vue.d.ts +5 -5
- package/dist/component/input/BSTreeMultiSelect.vue.d.ts +3 -0
- package/dist/component/input/BSTreeSelect.vue.d.ts +3 -0
- package/dist/component/input/BSYesNoGroup.vue.d.ts +2 -0
- package/dist/component/input/BSYesNoSelect.vue.d.ts +2 -0
- package/dist/component/input/DateRangePresetModel.d.ts +2 -2
- package/dist/component/tree/BSTreeControl.vue.d.ts +9 -0
- package/dist/component/tree/TreeModel.d.ts +4 -2
- package/dist/contextmenu/contextMenuPlugin.d.ts +1 -0
- package/dist/{index-BoZy0Ks4.js → index-DdKWwL6W.js} +475 -292
- package/dist/model/CommonTypes.d.ts +10 -0
- package/dist/style.css +775 -128
- package/package.json +1 -1
package/css/component.scss
CHANGED
|
@@ -67,6 +67,15 @@
|
|
|
67
67
|
&:first-child {
|
|
68
68
|
margin-left: 4px;
|
|
69
69
|
}
|
|
70
|
+
|
|
71
|
+
.font-icon {
|
|
72
|
+
font-size: 0.9em;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
img {
|
|
76
|
+
width: 0.9em;
|
|
77
|
+
height: 0.9em;
|
|
78
|
+
}
|
|
70
79
|
}
|
|
71
80
|
|
|
72
81
|
&:hover {
|
|
@@ -146,6 +155,7 @@
|
|
|
146
155
|
display: flex;
|
|
147
156
|
align-items: center;
|
|
148
157
|
gap: 4px;
|
|
158
|
+
font-size: .8125rem;
|
|
149
159
|
|
|
150
160
|
&::before {
|
|
151
161
|
content: 'globe';
|
|
@@ -156,6 +166,14 @@
|
|
|
156
166
|
}
|
|
157
167
|
}
|
|
158
168
|
|
|
169
|
+
.bs-calendar,
|
|
170
|
+
.bs-calendar-range {
|
|
171
|
+
.extra-dates {
|
|
172
|
+
padding-top: 8px;
|
|
173
|
+
border-top: 1px solid $color-border;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
159
177
|
// checkbox, radio-button component
|
|
160
178
|
.bs-checkbox-base {
|
|
161
179
|
display: inline-block;
|
|
@@ -280,10 +298,14 @@
|
|
|
280
298
|
.label {
|
|
281
299
|
flex-grow: 1;
|
|
282
300
|
white-space: nowrap;
|
|
301
|
+
overflow: hidden;
|
|
302
|
+
text-overflow: ellipsis;
|
|
283
303
|
}
|
|
284
304
|
|
|
285
305
|
.placeholder {
|
|
286
306
|
color: $gray-400;
|
|
307
|
+
overflow: hidden;
|
|
308
|
+
text-overflow: ellipsis;
|
|
287
309
|
}
|
|
288
310
|
|
|
289
311
|
.dropdown-btn {
|
package/css/layout.scss
CHANGED
|
@@ -127,6 +127,22 @@
|
|
|
127
127
|
background-color: $gray-100;
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
|
+
|
|
131
|
+
&.title-w-14 > div > .title {
|
|
132
|
+
width: 14em;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
&.title-w-16 > div > .title {
|
|
136
|
+
width: 16em;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
&.title-w-18 > div > .title {
|
|
140
|
+
width: 18em;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
&.title-w-20 > div > .title {
|
|
144
|
+
width: 20em;
|
|
145
|
+
}
|
|
130
146
|
}
|
|
131
147
|
|
|
132
148
|
.bs-layout-card {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, openBlock, createBlock, withCtx, createElementVNode, createVNode, unref } from "vue";
|
|
2
|
-
import { S as SearchParam, P as PaginatedList, u as useModalHandle, _ as _sfc_main$1, a as _sfc_main$2, b as _sfc_main$3, B as BSButton, w as waitDuring } from "./index-
|
|
2
|
+
import { S as SearchParam, P as PaginatedList, u as useModalHandle, _ as _sfc_main$1, a as _sfc_main$2, b as _sfc_main$3, B as BSButton, w as waitDuring } from "./index-DdKWwL6W.js";
|
|
3
3
|
const gridColumns = [
|
|
4
4
|
{ propertyId: "zipCode", caption: "Zipcode", width: 80 },
|
|
5
5
|
{ propertyId: "address1", caption: "state/province/region", width: 150 },
|
|
@@ -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, c as vT } from "./index-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, v as vFocusOnLoad, c as vT } from "./index-DdKWwL6W.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, v as vFocusOnLoad, c as vT } from "./index-
|
|
2
|
+
import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, v as vFocusOnLoad, c as vT } from "./index-DdKWwL6W.js";
|
|
3
3
|
const _hoisted_1 = { class: "text-right" };
|
|
4
4
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
5
|
__name: "BSYesNoModal",
|
package/dist/bluesea.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { aP, aQ, d, a3, a7, B, n, o, O, t, x, k, a8, bm, l, r, s, N, e, b, L, a, a4, J, i, T, R, a0, b6, a5, _, K, Z, $, Y, X, W, D, a1, a6, p, m, g, G, q, j, y, z, I, C, Q, a2, H, M, h, U, V, F, E, A, f, aX, aW, af, aa, bq, a9, am, aj, ag, aV, ao, an, bu, aT, al, aU, ap, aS, aR, ai, P, aL, S, aw, bC, bc, aY, b3, b2, ad, aO, be, ae, bp, br, ak, b9, ah, at, au, b1, aI, aJ, aK, aF, aH, aG, aE, aB, ay, bx, bk, bh, bv, a$, ac, bD, bB, ax, b0, aA, bE, a_, bw, ba, aZ, bA, bs, b4, b8, aM, aq, bd, bj, bi, bb, bg, az, av, bf, bz, bn, bo, bt, b5, b7, u, aN, ar, as, ab, c, aC, aD, w, by, bl } from "./index-
|
|
1
|
+
import { aP, aQ, d, a3, a7, B, n, o, O, t, x, k, a8, bm, l, r, s, N, e, b, L, a, a4, J, i, T, R, a0, b6, a5, _, K, Z, $, Y, X, W, D, a1, a6, p, m, g, G, q, j, y, z, I, C, Q, a2, H, M, h, U, V, F, E, A, f, aX, aW, af, aa, bq, a9, am, aj, ag, aV, ao, an, bu, aT, al, aU, ap, aS, aR, ai, P, aL, S, aw, bC, bc, aY, b3, b2, ad, aO, be, ae, bp, br, ak, b9, ah, at, au, b1, aI, aJ, aK, aF, aH, aG, aE, aB, ay, bx, bk, bh, bv, a$, ac, bD, bB, ax, b0, aA, bE, a_, bw, ba, aZ, bA, bs, b4, b8, aM, aq, bd, bj, bi, bb, bg, az, av, bf, bz, bn, bo, bt, b5, b7, u, aN, ar, as, ab, c, aC, aD, w, by, bl } from "./index-DdKWwL6W.js";
|
|
2
2
|
export {
|
|
3
3
|
aP as AbstractFilter,
|
|
4
4
|
aQ as AndFilter,
|