morya-ui 0.2.1 → 0.2.2
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 +11 -0
- package/dist/components/Menu/MenuCollapsedTooltip.vue.d.ts +27 -0
- package/dist/components/Menu/MenuCollapsedTooltip.vue.d.ts.map +1 -0
- package/dist/components/Menu/MenuNodes.vue.d.ts.map +1 -1
- package/dist/components/Menu/styles.css +25 -3
- package/dist/config-provider/index.js +6 -6
- package/dist/index.js +1165 -1120
- package/dist/menu/index.js +231 -185
- package/dist/menu/style.css +77 -3
- package/dist/menu/style.js +1 -0
- package/dist/styles.css +1 -1
- package/dist/table/index.js +4 -4
- package/dist/tree/index.js +1 -1
- package/package.json +1 -1
package/dist/table/index.js
CHANGED
|
@@ -5,8 +5,8 @@ import { t as r } from "../Scrollbar-DoNZvgX2.js";
|
|
|
5
5
|
import { t as i } from "../Checkbox-BjtAYUUD.js";
|
|
6
6
|
import { t as a } from "../Pagination-DNjDBPfR.js";
|
|
7
7
|
import { t as o } from "../ProgressSpinner-CT7IP3Yr.js";
|
|
8
|
-
import { t as s } from "../
|
|
9
|
-
import { t as c } from "../
|
|
8
|
+
import { t as s } from "../Tooltip-CrKm9FMD.js";
|
|
9
|
+
import { t as c } from "../Radio-DcotfGnv.js";
|
|
10
10
|
import { o as l } from "../config-CI8_WBbE.js";
|
|
11
11
|
import { n as u } from "../locale-DYGhxekd.js";
|
|
12
12
|
import "./style.js";
|
|
@@ -881,7 +881,7 @@ var Oe = ["aria-label"], ke = ["aria-busy"], Ae = ["id"], je = [
|
|
|
881
881
|
"model-value",
|
|
882
882
|
"aria-label",
|
|
883
883
|
"onUpdate:modelValue"
|
|
884
|
-
])) : o === "radio" ? (C(), p(
|
|
884
|
+
])) : o === "radio" ? (C(), p(c, {
|
|
885
885
|
key: 4,
|
|
886
886
|
"model-value": Wn.value ?? void 0,
|
|
887
887
|
value: $(r, a),
|
|
@@ -898,7 +898,7 @@ var Oe = ["aria-label"], ke = ["aria-busy"], Ae = ["id"], je = [
|
|
|
898
898
|
item: r,
|
|
899
899
|
row: r,
|
|
900
900
|
value: O(M)(o, r)
|
|
901
|
-
}), void 0, void 0, 5) : mn.value.get(o) ? (C(), h("span", Ve, D(mn.value.get(o)(r)), 1)) : (C(), p(
|
|
901
|
+
}), void 0, void 0, 5) : mn.value.get(o) ? (C(), h("span", Ve, D(mn.value.get(o)(r)), 1)) : (C(), p(s, {
|
|
902
902
|
key: 7,
|
|
903
903
|
content: O(de)(o, r),
|
|
904
904
|
disabled: !pr(o)
|
package/dist/tree/index.js
CHANGED
|
@@ -340,7 +340,7 @@ var j = Symbol("m-tree"), M = Symbol("m-tree-node-slot"), N = [
|
|
|
340
340
|
let e = Q.value;
|
|
341
341
|
if (e == null || !R.value) return;
|
|
342
342
|
let t = R.value.querySelectorAll("[data-m-tree-key]");
|
|
343
|
-
for (let n of t) if (n.dataset.
|
|
343
|
+
for (let n of t) if (n.dataset.mTreeKey === e) {
|
|
344
344
|
n.focus({ preventScroll: !0 });
|
|
345
345
|
break;
|
|
346
346
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "morya-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.2",
|
|
5
5
|
"description": "Open-source Vue 3 component library with design tokens, themes, and interactive docs.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://morya-space.github.io/morya-ui/",
|