@a2simcode/ui 0.0.81 → 0.0.83
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/dist/simcode-ui.es.js +5 -2
- package/dist/simcode-ui.umd.js +1 -1
- package/dist/stats.html +1 -1
- package/docs/components/meta/buttons.ts +1 -1
- package/docs/components/meta/comp.ts +12 -0
- package/docs/components/meta/page.ts +2 -23
- package/docs/components/meta/tabs.ts +10 -0
- package/docs/components/page.md +15 -0
- package/docs/examples/page/dept-user-management.vue +211 -0
- package/package.json +1 -1
package/dist/simcode-ui.es.js
CHANGED
|
@@ -11679,7 +11679,9 @@ const Rv = /* @__PURE__ */ ae({
|
|
|
11679
11679
|
const y = {
|
|
11680
11680
|
id: v.id,
|
|
11681
11681
|
slot: v.slot,
|
|
11682
|
-
type: v.type || ""
|
|
11682
|
+
type: v.type || "",
|
|
11683
|
+
getCompConfig: v.getCompConfig,
|
|
11684
|
+
getCompType: v.getCompType
|
|
11683
11685
|
}, { children: b } = v;
|
|
11684
11686
|
a[v.id] = y, y.config = [], qa(y.config, v.config || {}, ["defaultValue"]), v?.config?.defaultValue !== void 0 && (l[v.id] = v.config.defaultValue), g.push(y), b && b.length > 0 && (y.children = [], r(b, y.children));
|
|
11685
11687
|
});
|
|
@@ -12441,6 +12443,7 @@ const Rv = /* @__PURE__ */ ae({
|
|
|
12441
12443
|
return (c, u) => {
|
|
12442
12444
|
const d = B("el-tabs");
|
|
12443
12445
|
return C(), H(d, He(c.$attrs, {
|
|
12446
|
+
class: { isFill: e.isFill },
|
|
12444
12447
|
"model-value": e.modelValue,
|
|
12445
12448
|
type: e.type,
|
|
12446
12449
|
closable: e.closable,
|
|
@@ -12460,7 +12463,7 @@ const Rv = /* @__PURE__ */ ae({
|
|
|
12460
12463
|
$e(c.$slots, "default")
|
|
12461
12464
|
]),
|
|
12462
12465
|
_: 3
|
|
12463
|
-
}, 16, ["model-value", "type", "closable", "addable", "editable", "tab-position", "stretch", "before-leave"]);
|
|
12466
|
+
}, 16, ["class", "model-value", "type", "closable", "addable", "editable", "tab-position", "stretch", "before-leave"]);
|
|
12464
12467
|
};
|
|
12465
12468
|
}
|
|
12466
12469
|
}), tm = de(em), nm = /* @__PURE__ */ ae({
|