@arbocollab/arbo-plugin-item-table 0.1.109 → 0.1.110
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/CHANGELOG.md +7 -0
- package/lib/es/index.es.js +30 -28
- package/lib/style.css +1 -1
- package/lib/umd/index.umd.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.109] - 2026-07-10
|
|
4
|
+
|
|
5
|
+
- **Fix issue with new scene name length**: fix issue with checking submit error: allow up to 255 chars input
|
|
6
|
+
## [1.1.109] - 2026-07-10
|
|
7
|
+
|
|
8
|
+
- **Fix issue with tooltip** Fix an issue for update /completed date label, tooltip was not displayed by hover interaction because of bypassOverflowCheck is off
|
|
9
|
+
|
|
3
10
|
## [1.1.108] - 2026-07-10
|
|
4
11
|
|
|
5
12
|
### 🚀 Features & Enhancements
|
package/lib/es/index.es.js
CHANGED
|
@@ -7959,7 +7959,8 @@ const Nz = (e) => {
|
|
|
7959
7959
|
actived: { type: Boolean, default: !1 },
|
|
7960
7960
|
loading: { type: Boolean },
|
|
7961
7961
|
tooltip: {},
|
|
7962
|
-
href: { default: void 0 }
|
|
7962
|
+
href: { default: void 0 },
|
|
7963
|
+
hovered: { type: Boolean, default: !1 }
|
|
7963
7964
|
},
|
|
7964
7965
|
emits: ["handleClick", "escape", "select"],
|
|
7965
7966
|
setup(e, { expose: t, emit: n }) {
|
|
@@ -7977,7 +7978,7 @@ const Nz = (e) => {
|
|
|
7977
7978
|
() => Array.isArray(s.variant) ? s.variant : [s.variant]
|
|
7978
7979
|
), p = ty(), g = Y(() => {
|
|
7979
7980
|
const T = [p.customButton], I = f.value.find((x) => h.has(x)) || "primary";
|
|
7980
|
-
return T.push(p[`is-${I}`]), f.value.includes("danger") && T.push(p["is-danger"]), f.value.includes("icon") && T.push(p["is-icon"]), f.value.includes("control") && T.push(p["is-control"]), s.readOnly && T.push(p["is-readonly"]), s.rounded && T.push(p["is-rounded"]), s.border && T.push(p["has-border"]), s.highlightOnHover && T.push(p["highlight-on-hover"]), _.value && T.push(p["has-prefix"]), D.value && T.push(p["has-suffix"]), s.actived && T.push(p["is-active"]), s.disabled && T.push(p.disabled), s.loading && T.push(p["is-loading"]), typeof s.size == "string" && T.push(p[`size-${s.size}`]), T;
|
|
7981
|
+
return T.push(p[`is-${I}`]), f.value.includes("danger") && T.push(p["is-danger"]), f.value.includes("icon") && T.push(p["is-icon"]), f.value.includes("control") && T.push(p["is-control"]), s.readOnly && T.push(p["is-readonly"]), s.rounded && T.push(p["is-rounded"]), s.border && T.push(p["has-border"]), s.highlightOnHover && T.push(p["highlight-on-hover"]), _.value && T.push(p["has-prefix"]), D.value && T.push(p["has-suffix"]), s.actived && T.push(p["is-active"]), s.hovered && T.push(p["is-hovered"]), s.disabled && T.push(p.disabled), s.loading && T.push(p["is-loading"]), typeof s.size == "string" && T.push(p[`size-${s.size}`]), T;
|
|
7981
7982
|
}), v = Y(() => {
|
|
7982
7983
|
var T;
|
|
7983
7984
|
return s.variant == "primary" || ((T = s.variant) == null ? void 0 : T.includes("primary"));
|
|
@@ -8030,36 +8031,37 @@ const Nz = (e) => {
|
|
|
8030
8031
|
_: 3
|
|
8031
8032
|
}, 8, ["class", "type", "disabled", "aria-readonly", "style", "data-is-primary", "href"]));
|
|
8032
8033
|
}
|
|
8033
|
-
}), $z = "
|
|
8034
|
+
}), $z = "_customButton_sdove_1", Hz = "_disabled_sdove_269", Gz = "_spin_sdove_1", Uz = "_tertiary_sdove_309", Wz = "_active_sdove_315", zz = "_danger_sdove_322", jz = {
|
|
8034
8035
|
customButton: $z,
|
|
8035
|
-
"size-extra-small": "_size-extra-
|
|
8036
|
-
"size-small": "_size-
|
|
8037
|
-
"size-medium": "_size-
|
|
8038
|
-
"size-large": "_size-
|
|
8039
|
-
"size-default": "_size-
|
|
8040
|
-
"is-primary": "_is-
|
|
8041
|
-
"is-active": "_is-
|
|
8042
|
-
"is-secondary": "_is-
|
|
8043
|
-
"is-tertiary": "_is-
|
|
8044
|
-
"is-text": "_is-
|
|
8045
|
-
"is-danger": "_is-
|
|
8046
|
-
"is-menu-item": "_is-menu-
|
|
8047
|
-
"is-text-btn": "_is-text-
|
|
8048
|
-
"is-control": "_is-
|
|
8049
|
-
"is-
|
|
8050
|
-
"is-
|
|
8051
|
-
"
|
|
8052
|
-
"
|
|
8053
|
-
"
|
|
8054
|
-
"
|
|
8036
|
+
"size-extra-small": "_size-extra-small_sdove_31",
|
|
8037
|
+
"size-small": "_size-small_sdove_37",
|
|
8038
|
+
"size-medium": "_size-medium_sdove_43",
|
|
8039
|
+
"size-large": "_size-large_sdove_49",
|
|
8040
|
+
"size-default": "_size-default_sdove_55",
|
|
8041
|
+
"is-primary": "_is-primary_sdove_58",
|
|
8042
|
+
"is-active": "_is-active_sdove_67",
|
|
8043
|
+
"is-secondary": "_is-secondary_sdove_70",
|
|
8044
|
+
"is-tertiary": "_is-tertiary_sdove_88",
|
|
8045
|
+
"is-text": "_is-text_sdove_101",
|
|
8046
|
+
"is-danger": "_is-danger_sdove_109",
|
|
8047
|
+
"is-menu-item": "_is-menu-item_sdove_118",
|
|
8048
|
+
"is-text-btn": "_is-text-btn_sdove_187",
|
|
8049
|
+
"is-control": "_is-control_sdove_209",
|
|
8050
|
+
"is-hovered": "_is-hovered_sdove_215",
|
|
8051
|
+
"is-readonly": "_is-readonly_sdove_242",
|
|
8052
|
+
"is-rounded": "_is-rounded_sdove_245",
|
|
8053
|
+
"has-border": "_has-border_sdove_248",
|
|
8054
|
+
"highlight-on-hover": "_highlight-on-hover_sdove_251",
|
|
8055
|
+
"icon-wrapper": "_icon-wrapper_sdove_251",
|
|
8056
|
+
"is-loading": "_is-loading_sdove_254",
|
|
8055
8057
|
disabled: Hz,
|
|
8056
8058
|
spin: Gz,
|
|
8057
|
-
"is-icon": "_is-
|
|
8059
|
+
"is-icon": "_is-icon_sdove_293",
|
|
8058
8060
|
tertiary: Uz,
|
|
8059
8061
|
active: Wz,
|
|
8060
|
-
"read-only": "_read-
|
|
8062
|
+
"read-only": "_read-only_sdove_315",
|
|
8061
8063
|
danger: zz,
|
|
8062
|
-
"arbo__icon-btn": "_arbo__icon-
|
|
8064
|
+
"arbo__icon-btn": "_arbo__icon-btn_sdove_329"
|
|
8063
8065
|
}, _t = (e, t) => {
|
|
8064
8066
|
const n = e.__vccOpts || e;
|
|
8065
8067
|
for (const [o, s] of t)
|
|
@@ -39647,7 +39649,7 @@ function Cre() {
|
|
|
39647
39649
|
due_date: null
|
|
39648
39650
|
}), t = () => {
|
|
39649
39651
|
const s = e.name.trim();
|
|
39650
|
-
e.status, s.length === 0 ? e.error = "Name cannot be empty" : s.length >
|
|
39652
|
+
e.status, s.length === 0 ? e.error = "Name cannot be empty" : s.length > 255 ? e.error = "Name cannot exceed 255 characters" : e.error = void 0;
|
|
39651
39653
|
}, n = () => {
|
|
39652
39654
|
e.isCreating = !0, e.name = "", e.error = void 0, e.assignees = null, e.status = null, e.start_date = null, e.due_date = null;
|
|
39653
39655
|
}, o = () => {
|
|
@@ -87620,7 +87622,7 @@ const $De = {
|
|
|
87620
87622
|
"beta-tag": "_beta-tag_1sow5_56"
|
|
87621
87623
|
}, oTe = {
|
|
87622
87624
|
$style: nTe
|
|
87623
|
-
}, sTe = /* @__PURE__ */ _t(ZDe, [["__cssModules", oTe]]), r$ = "0.1.
|
|
87625
|
+
}, sTe = /* @__PURE__ */ _t(ZDe, [["__cssModules", oTe]]), r$ = "0.1.110", rTe = { key: 0 }, iTe = /* @__PURE__ */ it({
|
|
87624
87626
|
__name: "app",
|
|
87625
87627
|
setup(e) {
|
|
87626
87628
|
const t = Y(() => n.id.length === 0 || n.workspaceId.length === 0), n = ys({
|