el-plus-crud 0.1.60 → 0.1.61
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
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.61](https://github.com/KDJack/el-plus-crud/compare/v0.1.60...v0.1.61) (2025-03-28)
|
|
6
|
+
|
|
5
7
|
### [0.1.60](https://github.com/KDJack/el-plus-crud/compare/v0.1.59...v0.1.60) (2025-01-20)
|
|
6
8
|
|
|
7
9
|
### [0.1.59](https://github.com/KDJack/el-plus-crud/compare/v0.1.52...v0.1.59) (2025-01-20)
|
package/dist/el-plus-crud.mjs
CHANGED
|
@@ -2470,20 +2470,20 @@ const yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2470
2470
|
default: C(() => [
|
|
2471
2471
|
(N(!0), L(J, null, Me(a, (w) => (N(), x(f, {
|
|
2472
2472
|
key: w.value,
|
|
2473
|
-
|
|
2473
|
+
label: w.value
|
|
2474
2474
|
}, {
|
|
2475
2475
|
default: C(() => [
|
|
2476
2476
|
ze(de(w.l || w.label), 1)
|
|
2477
2477
|
]),
|
|
2478
2478
|
_: 2
|
|
2479
|
-
}, 1032, ["
|
|
2479
|
+
}, 1032, ["label"]))), 128))
|
|
2480
2480
|
]),
|
|
2481
2481
|
_: 1
|
|
2482
2482
|
}, 16, ["disabled", "modelValue"])) : V("", !0);
|
|
2483
2483
|
};
|
|
2484
2484
|
}
|
|
2485
2485
|
});
|
|
2486
|
-
const hn = /* @__PURE__ */ Ie(mu, [["__scopeId", "data-v-
|
|
2486
|
+
const hn = /* @__PURE__ */ Ie(mu, [["__scopeId", "data-v-fcd80d37"]]), Du = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({ __proto__: null, default: hn }, Symbol.toStringTag, { value: "Module" })), vu = {
|
|
2487
2487
|
name: "ElPlusFormRate",
|
|
2488
2488
|
inheritAttrs: !1,
|
|
2489
2489
|
typeName: "rate",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<el-radio-group v-if="isInit" class="ElPlusFormRadio-panel" v-bind="attrs" :disabled="disabled" v-on="onEvents" v-model="currentValue">
|
|
3
|
-
<el-radio v-for="option of options" :key="option.value" :
|
|
3
|
+
<el-radio v-for="option of options" :key="option.value" :label="option.value">
|
|
4
4
|
{{ option.l || option.label }}
|
|
5
5
|
</el-radio>
|
|
6
6
|
</el-radio-group>
|