ele-admin-plus 1.1.8 → 1.1.9-beta.1

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.
@@ -1,4 +1,4 @@
1
- import { defineComponent, computed, resolveComponent, openBlock, createBlock, mergeProps, withCtx, createElementBlock, Fragment, renderList, renderSlot } from "vue";
1
+ import { defineComponent, computed, resolveComponent, openBlock, createBlock, mergeProps, withCtx, createElementBlock, Fragment, renderList, createSlots, renderSlot } from "vue";
2
2
  import { ElSteps, ElStep } from "element-plus";
3
3
  import { useLicense } from "../ele-config-provider/receiver";
4
4
  import { omit } from "../utils/core";
@@ -33,17 +33,19 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
33
33
  }), {
34
34
  default: withCtx(() => [
35
35
  (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.items, (item, index2) => {
36
- return openBlock(), createBlock(_component_ElStep, mergeProps({ key: index2 }, item), {
37
- default: withCtx(() => [
38
- (openBlock(true), createElementBlock(Fragment, null, renderList(Object.keys(_ctx.$slots).filter((k) => "default" !== k), (name) => {
39
- return renderSlot(_ctx.$slots, name, {
40
- index: index2,
41
- item
42
- });
43
- }), 256))
44
- ]),
45
- _: 2
46
- }, 1040);
36
+ return openBlock(), createBlock(_component_ElStep, mergeProps({ key: index2 }, item), createSlots({ _: 2 }, [
37
+ renderList(Object.keys(_ctx.$slots).filter((k) => "default" !== k), (name) => {
38
+ return {
39
+ name,
40
+ fn: withCtx(() => [
41
+ renderSlot(_ctx.$slots, name, {
42
+ index: index2,
43
+ item
44
+ })
45
+ ])
46
+ };
47
+ })
48
+ ]), 1040);
47
49
  }), 128))
48
50
  ]),
49
51
  _: 3
@@ -34,17 +34,19 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
34
34
  }), {
35
35
  default: vue.withCtx(() => [
36
36
  (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.items, (item, index2) => {
37
- return vue.openBlock(), vue.createBlock(_component_ElStep, vue.mergeProps({ key: index2 }, item), {
38
- default: vue.withCtx(() => [
39
- (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(Object.keys(_ctx.$slots).filter((k) => "default" !== k), (name) => {
40
- return vue.renderSlot(_ctx.$slots, name, {
41
- index: index2,
42
- item
43
- });
44
- }), 256))
45
- ]),
46
- _: 2
47
- }, 1040);
37
+ return vue.openBlock(), vue.createBlock(_component_ElStep, vue.mergeProps({ key: index2 }, item), vue.createSlots({ _: 2 }, [
38
+ vue.renderList(Object.keys(_ctx.$slots).filter((k) => "default" !== k), (name) => {
39
+ return {
40
+ name,
41
+ fn: vue.withCtx(() => [
42
+ vue.renderSlot(_ctx.$slots, name, {
43
+ index: index2,
44
+ item
45
+ })
46
+ ])
47
+ };
48
+ })
49
+ ]), 1040);
48
50
  }), 128))
49
51
  ]),
50
52
  _: 3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ele-admin-plus",
3
- "version": "1.1.8",
3
+ "version": "1.1.9-beta.1",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite --host --config vite.global.ts",