@g1cloud/bluesea 5.0.0-alpha.17 → 5.0.0-alpha.19

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/layout.scss CHANGED
@@ -156,10 +156,11 @@ $table-row-even-color: $gray-100;
156
156
  .bs-layout-table {
157
157
  border-collapse: collapse;
158
158
 
159
- > tr > td, > tr > th {
159
+ > tr > td, > tr > th, tbody > tr > td, tbody > tr > th {
160
160
  padding: 8px;
161
- border: 1px solid $color-gray-border;
161
+ border: 1px solid $color-border;
162
162
  vertical-align: middle;
163
+ text-align: left;
163
164
 
164
165
  &:first-child {
165
166
  border-left: 0;
@@ -170,11 +171,11 @@ $table-row-even-color: $gray-100;
170
171
  }
171
172
  }
172
173
 
173
- > tr:nth-child(odd) {
174
- background-color: $table-row-odd-color;
175
- }
176
-
177
- > tr:nth-child(even) {
178
- background-color: $table-row-even-color;
179
- }
174
+ //> tr:nth-child(odd) {
175
+ // background-color: $table-row-odd-color;
176
+ //}
177
+ //
178
+ //> tr:nth-child(even) {
179
+ // background-color: $table-row-even-color;
180
+ //}
180
181
  }
package/dist/bluesea.js CHANGED
@@ -28209,7 +28209,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
28209
28209
  } else if (props.column.cellType === "PERCENTAGE") {
28210
28210
  return formatUtil.formatPercent(Number(cellValue.value));
28211
28211
  } else if (props.column.cellType === "DATE") {
28212
- return formatUtil.formatDate(String(cellValue.value), props.column.dateFormat);
28212
+ return formatUtil.formatDate(cellValue.value ? String(cellValue.value) : "", props.column.dateFormat);
28213
28213
  } else if (props.column.cellType === "MULTI_LANG_TEXT" && typeof cellValue.value === "object") {
28214
28214
  return cellValue.value[blueseaConfig.currentLocale];
28215
28215
  } else {
@@ -29484,7 +29484,7 @@ const vTreeRowDrop = {
29484
29484
  el.setAttribute("data-droppable", "true");
29485
29485
  el.ondragover = (event) => {
29486
29486
  var _a2;
29487
- if ((_a2 = policy.isDroppable) == null ? void 0 : _a2.call(policy, draggingRow, draggingParentRow, parentRow)) {
29487
+ if ((_a2 = policy.isDroppable) == null ? void 0 : _a2.call(policy, draggingRow, draggingParentRow, row, parentRow)) {
29488
29488
  const target = event.currentTarget;
29489
29489
  ensureAddPositionMark(target);
29490
29490
  const dropPosition = calculateDropPosition(target, event.clientY, step);
@@ -29519,7 +29519,7 @@ const vTreeRowDrop = {
29519
29519
  };
29520
29520
  el.ondrop = (event) => {
29521
29521
  var _a2;
29522
- if ((_a2 = policy.isDroppable) == null ? void 0 : _a2.call(policy, draggingRow, draggingParentRow, parentRow)) {
29522
+ if ((_a2 = policy.isDroppable) == null ? void 0 : _a2.call(policy, draggingRow, draggingParentRow, row, parentRow)) {
29523
29523
  const target = event.currentTarget;
29524
29524
  if (draggingRow && draggingSiblings) {
29525
29525
  const dropPosition = calculateDropPosition(target, event.clientY, step);
@@ -30906,10 +30906,10 @@ const vFocusOnLoad = {
30906
30906
  const checkEnglish = (str) => {
30907
30907
  return /[a-z]/i.test(str);
30908
30908
  };
30909
- const _withScopeId = (n) => (pushScopeId("data-v-4bcd05ff"), n = n(), popScopeId(), n);
30909
+ const _withScopeId = (n) => (pushScopeId("data-v-5f4be8cc"), n = n(), popScopeId(), n);
30910
30910
  const _hoisted_1$7 = { class: "position-relative" };
30911
30911
  const _hoisted_2$5 = { class: "menu-search" };
30912
- const _hoisted_3$2 = ["placeholder", "value", "onKeydown"];
30912
+ const _hoisted_3$2 = ["value", "onKeydown"];
30913
30913
  const _hoisted_4$1 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "font-icon text-gray-400" }, "close", -1));
30914
30914
  const _hoisted_5 = [
30915
30915
  _hoisted_4$1
@@ -30983,14 +30983,19 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
30983
30983
  return openBlock(), createElementBlock("div", _hoisted_1$7, [
30984
30984
  createElementVNode("div", _hoisted_2$5, [
30985
30985
  withDirectives(createElementVNode("input", {
30986
- placeholder: _ctx.placeholder,
30987
30986
  value: keyword.value,
30988
30987
  onBlur: _cache[0] || (_cache[0] = ($event) => setIsEditingKeyword(false)),
30989
30988
  onFocusin: _cache[1] || (_cache[1] = ($event) => setIsEditingKeyword(true)),
30990
30989
  onInput: _cache[2] || (_cache[2] = ($event) => changeKeyword($event)),
30991
30990
  onKeydown: withKeys(submit, ["enter"])
30992
30991
  }, null, 40, _hoisted_3$2), [
30993
- [unref(vFocusOnLoad), _ctx.focusOnLoad ? 300 : false]
30992
+ [unref(vFocusOnLoad), _ctx.focusOnLoad ? 300 : false],
30993
+ [
30994
+ unref(vT),
30995
+ _ctx.placeholder,
30996
+ void 0,
30997
+ { placeholder: true }
30998
+ ]
30994
30999
  ]),
30995
31000
  createElementVNode("div", { class: "icon" }, [
30996
31001
  createElementVNode("button", { onClick: emptyKeyword }, _hoisted_5),
@@ -31001,7 +31006,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
31001
31006
  };
31002
31007
  }
31003
31008
  });
31004
- const SidebarMenuSearch = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-4bcd05ff"]]);
31009
+ const SidebarMenuSearch = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-5f4be8cc"]]);
31005
31010
  class DefaultFrameContext {
31006
31011
  constructor(config) {
31007
31012
  __publicField(this, "pageManager");
@@ -28210,7 +28210,7 @@ img.ProseMirror-separator {
28210
28210
  } else if (props.column.cellType === "PERCENTAGE") {
28211
28211
  return formatUtil.formatPercent(Number(cellValue.value));
28212
28212
  } else if (props.column.cellType === "DATE") {
28213
- return formatUtil.formatDate(String(cellValue.value), props.column.dateFormat);
28213
+ return formatUtil.formatDate(cellValue.value ? String(cellValue.value) : "", props.column.dateFormat);
28214
28214
  } else if (props.column.cellType === "MULTI_LANG_TEXT" && typeof cellValue.value === "object") {
28215
28215
  return cellValue.value[blueseaConfig.currentLocale];
28216
28216
  } else {
@@ -29485,7 +29485,7 @@ img.ProseMirror-separator {
29485
29485
  el.setAttribute("data-droppable", "true");
29486
29486
  el.ondragover = (event) => {
29487
29487
  var _a2;
29488
- if ((_a2 = policy.isDroppable) == null ? void 0 : _a2.call(policy, draggingRow, draggingParentRow, parentRow)) {
29488
+ if ((_a2 = policy.isDroppable) == null ? void 0 : _a2.call(policy, draggingRow, draggingParentRow, row, parentRow)) {
29489
29489
  const target = event.currentTarget;
29490
29490
  ensureAddPositionMark(target);
29491
29491
  const dropPosition = calculateDropPosition(target, event.clientY, step);
@@ -29520,7 +29520,7 @@ img.ProseMirror-separator {
29520
29520
  };
29521
29521
  el.ondrop = (event) => {
29522
29522
  var _a2;
29523
- if ((_a2 = policy.isDroppable) == null ? void 0 : _a2.call(policy, draggingRow, draggingParentRow, parentRow)) {
29523
+ if ((_a2 = policy.isDroppable) == null ? void 0 : _a2.call(policy, draggingRow, draggingParentRow, row, parentRow)) {
29524
29524
  const target = event.currentTarget;
29525
29525
  if (draggingRow && draggingSiblings) {
29526
29526
  const dropPosition = calculateDropPosition(target, event.clientY, step);
@@ -30907,10 +30907,10 @@ img.ProseMirror-separator {
30907
30907
  const checkEnglish = (str) => {
30908
30908
  return /[a-z]/i.test(str);
30909
30909
  };
30910
- const _withScopeId = (n) => (vue.pushScopeId("data-v-4bcd05ff"), n = n(), vue.popScopeId(), n);
30910
+ const _withScopeId = (n) => (vue.pushScopeId("data-v-5f4be8cc"), n = n(), vue.popScopeId(), n);
30911
30911
  const _hoisted_1$8 = { class: "position-relative" };
30912
30912
  const _hoisted_2$6 = { class: "menu-search" };
30913
- const _hoisted_3$3 = ["placeholder", "value", "onKeydown"];
30913
+ const _hoisted_3$3 = ["value", "onKeydown"];
30914
30914
  const _hoisted_4$1 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ vue.createElementVNode("span", { class: "font-icon text-gray-400" }, "close", -1));
30915
30915
  const _hoisted_5 = [
30916
30916
  _hoisted_4$1
@@ -30984,14 +30984,19 @@ img.ProseMirror-separator {
30984
30984
  return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$8, [
30985
30985
  vue.createElementVNode("div", _hoisted_2$6, [
30986
30986
  vue.withDirectives(vue.createElementVNode("input", {
30987
- placeholder: _ctx.placeholder,
30988
30987
  value: keyword.value,
30989
30988
  onBlur: _cache[0] || (_cache[0] = ($event) => setIsEditingKeyword(false)),
30990
30989
  onFocusin: _cache[1] || (_cache[1] = ($event) => setIsEditingKeyword(true)),
30991
30990
  onInput: _cache[2] || (_cache[2] = ($event) => changeKeyword($event)),
30992
30991
  onKeydown: vue.withKeys(submit, ["enter"])
30993
30992
  }, null, 40, _hoisted_3$3), [
30994
- [vue.unref(vFocusOnLoad), _ctx.focusOnLoad ? 300 : false]
30993
+ [vue.unref(vFocusOnLoad), _ctx.focusOnLoad ? 300 : false],
30994
+ [
30995
+ vue.unref(vT),
30996
+ _ctx.placeholder,
30997
+ void 0,
30998
+ { placeholder: true }
30999
+ ]
30995
31000
  ]),
30996
31001
  vue.createElementVNode("div", { class: "icon" }, [
30997
31002
  vue.createElementVNode("button", { onClick: emptyKeyword }, _hoisted_5),
@@ -31002,7 +31007,7 @@ img.ProseMirror-separator {
31002
31007
  };
31003
31008
  }
31004
31009
  });
31005
- const SidebarMenuSearch = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-4bcd05ff"]]);
31010
+ const SidebarMenuSearch = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-5f4be8cc"]]);
31006
31011
  class DefaultFrameContext {
31007
31012
  constructor(config) {
31008
31013
  __publicField(this, "pageManager");
@@ -5,7 +5,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
5
5
  maxlength?: number | undefined;
6
6
  required?: boolean | undefined;
7
7
  width?: string | undefined;
8
- placeholder?: string | undefined;
8
+ placeholder?: MultiLangText | undefined;
9
9
  tabindex?: number | undefined;
10
10
  disabled?: boolean | undefined;
11
11
  modelValue?: Address | undefined;
@@ -27,7 +27,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
27
27
  maxlength?: number | undefined;
28
28
  required?: boolean | undefined;
29
29
  width?: string | undefined;
30
- placeholder?: string | undefined;
30
+ placeholder?: MultiLangText | undefined;
31
31
  tabindex?: number | undefined;
32
32
  disabled?: boolean | undefined;
33
33
  modelValue?: Address | undefined;
@@ -1,11 +1,11 @@
1
- import { Name } from '../../model/CommonTypes.ts';
1
+ import { MultiLangText, Name } from '../../model/CommonTypes.ts';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
3
  id?: string | undefined;
4
4
  name?: string | undefined;
5
5
  maxlength?: number | undefined;
6
6
  required?: boolean | undefined;
7
7
  width?: string | undefined;
8
- placeholder?: string | undefined;
8
+ placeholder?: MultiLangText | undefined;
9
9
  tabindex?: number | undefined;
10
10
  disabled?: boolean | undefined;
11
11
  modelValue?: Name | undefined;
@@ -22,7 +22,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
22
22
  maxlength?: number | undefined;
23
23
  required?: boolean | undefined;
24
24
  width?: string | undefined;
25
- placeholder?: string | undefined;
25
+ placeholder?: MultiLangText | undefined;
26
26
  tabindex?: number | undefined;
27
27
  disabled?: boolean | undefined;
28
28
  modelValue?: Name | undefined;
@@ -1,11 +1,11 @@
1
- import { SettingField, Tel } from '../../model/CommonTypes.ts';
1
+ import { MultiLangText, SettingField, Tel } from '../../model/CommonTypes.ts';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
3
  id?: string | undefined;
4
4
  name?: string | undefined;
5
5
  maxlength?: number | undefined;
6
6
  required?: boolean | undefined;
7
7
  width?: string | undefined;
8
- placeholder?: string | undefined;
8
+ placeholder?: MultiLangText | undefined;
9
9
  tabindex?: number | undefined;
10
10
  countryNoId?: string | undefined;
11
11
  modelValue?: Tel | undefined;
@@ -19,7 +19,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
19
19
  maxlength?: number | undefined;
20
20
  required?: boolean | undefined;
21
21
  width?: string | undefined;
22
- placeholder?: string | undefined;
22
+ placeholder?: MultiLangText | undefined;
23
23
  tabindex?: number | undefined;
24
24
  countryNoId?: string | undefined;
25
25
  modelValue?: Tel | undefined;
@@ -2,7 +2,7 @@ import { UnwrapRef } from "vue";
2
2
  import { MultiLangText } from '../../model/CommonTypes.ts';
3
3
  import { FieldValidationRule } from '../../validator/FieldValidator.ts';
4
4
  declare const _default: <T, V>(__VLS_props: {
5
- placeholder?: string | undefined;
5
+ placeholder?: MultiLangText | undefined;
6
6
  disabled?: boolean | undefined;
7
7
  required?: boolean | undefined;
8
8
  modelValue?: V | undefined;
@@ -21,7 +21,7 @@ declare const _default: <T, V>(__VLS_props: {
21
21
  emit: (e: 'update:modelValue', value?: V | undefined) => void;
22
22
  } | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
23
23
  props: {
24
- placeholder?: string | undefined;
24
+ placeholder?: MultiLangText | undefined;
25
25
  disabled?: boolean | undefined;
26
26
  required?: boolean | undefined;
27
27
  modelValue?: V | undefined;
@@ -44,7 +44,7 @@ declare const _default: <T, V>(__VLS_props: {
44
44
  }> & {
45
45
  __ctx?: {
46
46
  props: {
47
- placeholder?: string | undefined;
47
+ placeholder?: MultiLangText | undefined;
48
48
  disabled?: boolean | undefined;
49
49
  required?: boolean | undefined;
50
50
  modelValue?: V | undefined;
@@ -4,7 +4,7 @@ export type KeyProvider<T> = (item: T) => string;
4
4
  export type DragAndDropPolicy = {
5
5
  isDraggableRow?: (srcRow: unknown) => boolean;
6
6
  isDroppableRow?: (destRow: unknown) => boolean;
7
- isDroppable?: (srcRow: unknown, srcParentRow: unknown, destParentRow: unknown) => boolean;
7
+ isDroppable?: (srcRow: unknown, srcParentRow: unknown, destRow: unknown, destParentRow: unknown) => boolean;
8
8
  dropStep?: () => 2 | 3;
9
9
  };
10
10
  export type RowMovedEvent<T> = {
@@ -1,7 +1,8 @@
1
1
  import { MenuView } from '../../frame/FrameModel.ts';
2
+ import { MultiLangText } from '../../model/CommonTypes.ts';
2
3
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
4
  focusOnLoad?: boolean | undefined;
4
- placeholder?: string | undefined;
5
+ placeholder?: MultiLangText | undefined;
5
6
  menu: MenuView[];
6
7
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
8
  "search-menu-result": (result: MenuView[]) => void;
@@ -9,7 +10,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
9
10
  "search-keyword": (keyword: string) => void;
10
11
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
11
12
  focusOnLoad?: boolean | undefined;
12
- placeholder?: string | undefined;
13
+ placeholder?: MultiLangText | undefined;
13
14
  menu: MenuView[];
14
15
  }>>> & {
15
16
  "onSearch-menu-result"?: ((result: MenuView[]) => any) | undefined;
package/dist/style.css CHANGED
@@ -1917,23 +1917,18 @@ textarea {
1917
1917
  .bs-layout-table {
1918
1918
  border-collapse: collapse;
1919
1919
  }
1920
- .bs-layout-table > tr > td, .bs-layout-table > tr > th {
1920
+ .bs-layout-table > tr > td, .bs-layout-table > tr > th, .bs-layout-table tbody > tr > td, .bs-layout-table tbody > tr > th {
1921
1921
  padding: 8px;
1922
1922
  border: 1px solid #CCCCCC;
1923
1923
  vertical-align: middle;
1924
+ text-align: left;
1924
1925
  }
1925
- .bs-layout-table > tr > td:first-child, .bs-layout-table > tr > th:first-child {
1926
+ .bs-layout-table > tr > td:first-child, .bs-layout-table > tr > th:first-child, .bs-layout-table tbody > tr > td:first-child, .bs-layout-table tbody > tr > th:first-child {
1926
1927
  border-left: 0;
1927
1928
  }
1928
- .bs-layout-table > tr > td:last-child, .bs-layout-table > tr > th:last-child {
1929
+ .bs-layout-table > tr > td:last-child, .bs-layout-table > tr > th:last-child, .bs-layout-table tbody > tr > td:last-child, .bs-layout-table tbody > tr > th:last-child {
1929
1930
  border-right: 0;
1930
1931
  }
1931
- .bs-layout-table > tr:nth-child(odd) {
1932
- background-color: #ffffff;
1933
- }
1934
- .bs-layout-table > tr:nth-child(even) {
1935
- background-color: #FAFAFA;
1936
- }
1937
1932
  :root {
1938
1933
  --font-size: 13px;
1939
1934
  --font-size-input: 12px;
@@ -31072,23 +31067,18 @@ textarea {
31072
31067
  .bs-layout-table {
31073
31068
  border-collapse: collapse;
31074
31069
  }
31075
- .bs-layout-table > tr > td, .bs-layout-table > tr > th {
31070
+ .bs-layout-table > tr > td, .bs-layout-table > tr > th, .bs-layout-table tbody > tr > td, .bs-layout-table tbody > tr > th {
31076
31071
  padding: 8px;
31077
31072
  border: 1px solid #CCCCCC;
31078
31073
  vertical-align: middle;
31074
+ text-align: left;
31079
31075
  }
31080
- .bs-layout-table > tr > td:first-child, .bs-layout-table > tr > th:first-child {
31076
+ .bs-layout-table > tr > td:first-child, .bs-layout-table > tr > th:first-child, .bs-layout-table tbody > tr > td:first-child, .bs-layout-table tbody > tr > th:first-child {
31081
31077
  border-left: 0;
31082
31078
  }
31083
- .bs-layout-table > tr > td:last-child, .bs-layout-table > tr > th:last-child {
31079
+ .bs-layout-table > tr > td:last-child, .bs-layout-table > tr > th:last-child, .bs-layout-table tbody > tr > td:last-child, .bs-layout-table tbody > tr > th:last-child {
31084
31080
  border-right: 0;
31085
31081
  }
31086
- .bs-layout-table > tr:nth-child(odd) {
31087
- background-color: #ffffff;
31088
- }
31089
- .bs-layout-table > tr:nth-child(even) {
31090
- background-color: #FAFAFA;
31091
- }
31092
31082
  .bs-tab-sheet {
31093
31083
  background-color: #EAF1FE;
31094
31084
  min-height: calc(100vh - 44px);
@@ -31535,23 +31525,18 @@ textarea {
31535
31525
  .bs-layout-table {
31536
31526
  border-collapse: collapse;
31537
31527
  }
31538
- .bs-layout-table > tr > td, .bs-layout-table > tr > th {
31528
+ .bs-layout-table > tr > td, .bs-layout-table > tr > th, .bs-layout-table tbody > tr > td, .bs-layout-table tbody > tr > th {
31539
31529
  padding: 8px;
31540
31530
  border: 1px solid #CCCCCC;
31541
31531
  vertical-align: middle;
31532
+ text-align: left;
31542
31533
  }
31543
- .bs-layout-table > tr > td:first-child, .bs-layout-table > tr > th:first-child {
31534
+ .bs-layout-table > tr > td:first-child, .bs-layout-table > tr > th:first-child, .bs-layout-table tbody > tr > td:first-child, .bs-layout-table tbody > tr > th:first-child {
31544
31535
  border-left: 0;
31545
31536
  }
31546
- .bs-layout-table > tr > td:last-child, .bs-layout-table > tr > th:last-child {
31537
+ .bs-layout-table > tr > td:last-child, .bs-layout-table > tr > th:last-child, .bs-layout-table tbody > tr > td:last-child, .bs-layout-table tbody > tr > th:last-child {
31547
31538
  border-right: 0;
31548
31539
  }
31549
- .bs-layout-table > tr:nth-child(odd) {
31550
- background-color: #ffffff;
31551
- }
31552
- .bs-layout-table > tr:nth-child(even) {
31553
- background-color: #FAFAFA;
31554
- }
31555
31540
  .bs-tree-row .row-caption {
31556
31541
  position: relative;
31557
31542
  align-items: center;
@@ -32232,23 +32217,18 @@ textarea[data-v-84ee1863] {
32232
32217
  .bs-layout-table[data-v-84ee1863] {
32233
32218
  border-collapse: collapse;
32234
32219
  }
32235
- .bs-layout-table > tr > td[data-v-84ee1863], .bs-layout-table > tr > th[data-v-84ee1863] {
32220
+ .bs-layout-table > tr > td[data-v-84ee1863], .bs-layout-table > tr > th[data-v-84ee1863], .bs-layout-table tbody > tr > td[data-v-84ee1863], .bs-layout-table tbody > tr > th[data-v-84ee1863] {
32236
32221
  padding: 8px;
32237
32222
  border: 1px solid #CCCCCC;
32238
32223
  vertical-align: middle;
32224
+ text-align: left;
32239
32225
  }
32240
- .bs-layout-table > tr > td[data-v-84ee1863]:first-child, .bs-layout-table > tr > th[data-v-84ee1863]:first-child {
32226
+ .bs-layout-table > tr > td[data-v-84ee1863]:first-child, .bs-layout-table > tr > th[data-v-84ee1863]:first-child, .bs-layout-table tbody > tr > td[data-v-84ee1863]:first-child, .bs-layout-table tbody > tr > th[data-v-84ee1863]:first-child {
32241
32227
  border-left: 0;
32242
32228
  }
32243
- .bs-layout-table > tr > td[data-v-84ee1863]:last-child, .bs-layout-table > tr > th[data-v-84ee1863]:last-child {
32229
+ .bs-layout-table > tr > td[data-v-84ee1863]:last-child, .bs-layout-table > tr > th[data-v-84ee1863]:last-child, .bs-layout-table tbody > tr > td[data-v-84ee1863]:last-child, .bs-layout-table tbody > tr > th[data-v-84ee1863]:last-child {
32244
32230
  border-right: 0;
32245
32231
  }
32246
- .bs-layout-table > tr[data-v-84ee1863]:nth-child(odd) {
32247
- background-color: #ffffff;
32248
- }
32249
- .bs-layout-table > tr[data-v-84ee1863]:nth-child(even) {
32250
- background-color: #FAFAFA;
32251
- }
32252
32232
  .bs-button[data-v-84ee1863] {
32253
32233
  padding: 3px;
32254
32234
  height: auto;
@@ -32484,29 +32464,29 @@ textarea {
32484
32464
  right: 0;
32485
32465
  bottom: 0;
32486
32466
  z-index: 300;
32487
- }[data-v-4bcd05ff]:root {
32467
+ }[data-v-5f4be8cc]:root {
32488
32468
  --font-size: 13px;
32489
32469
  --font-size-input: 12px;
32490
32470
  --font-size-button: 12px;
32491
32471
  }
32492
- body[data-v-4bcd05ff] {
32472
+ body[data-v-5f4be8cc] {
32493
32473
  font-size: var(--font-size);
32494
32474
  }
32495
- input[data-v-4bcd05ff] {
32475
+ input[data-v-5f4be8cc] {
32496
32476
  font-size: var(--font-size-input);
32497
32477
  padding-top: 2px;
32498
32478
  }
32499
- button[data-v-4bcd05ff] {
32479
+ button[data-v-5f4be8cc] {
32500
32480
  font-size: var(--font-size-button);
32501
32481
  }
32502
- textarea[data-v-4bcd05ff] {
32482
+ textarea[data-v-5f4be8cc] {
32503
32483
  font-size: var(--font-size-input);
32504
32484
  }
32505
- .menu-search[data-v-4bcd05ff] {
32485
+ .menu-search[data-v-5f4be8cc] {
32506
32486
  position: relative;
32507
32487
  margin: 8px 16px;
32508
32488
  }
32509
- .menu-search input[data-v-4bcd05ff] {
32489
+ .menu-search input[data-v-5f4be8cc] {
32510
32490
  padding: 4px 8px 5px;
32511
32491
  background: #2D2E36;
32512
32492
  border: 1px solid #A9A9A9;
@@ -32515,13 +32495,13 @@ textarea[data-v-4bcd05ff] {
32515
32495
  color: #B0B1BA;
32516
32496
  outline: none;
32517
32497
  }
32518
- .menu-search .icon[data-v-4bcd05ff] {
32498
+ .menu-search .icon[data-v-5f4be8cc] {
32519
32499
  position: absolute;
32520
32500
  font-size: 14px;
32521
32501
  top: 4px;
32522
32502
  right: 4px;
32523
32503
  }
32524
- .menu-search .icon button[data-v-4bcd05ff] {
32504
+ .menu-search .icon button[data-v-5f4be8cc] {
32525
32505
  background-color: transparent;
32526
32506
  border: none;
32527
32507
  cursor: pointer;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@g1cloud/bluesea",
3
3
  "private": false,
4
- "version": "5.0.0-alpha.17",
4
+ "version": "5.0.0-alpha.19",
5
5
  "description": "Ui Library for g1cloud BackOffice.",
6
6
  "type": "module",
7
7
  "engines": {