@me-framework/me-ui-antdv-next 0.0.28 → 0.0.30

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.
Files changed (38) hide show
  1. package/dist/chunks/modal-D4Tl-Qzk.js +166 -0
  2. package/dist/chunks/skeleton-D1-aYUPf.js +135 -0
  3. package/dist/code-box/code-item.vue.d.ts +14 -0
  4. package/dist/code-box/index.css +1 -0
  5. package/dist/code-box/index.d.ts +5 -0
  6. package/dist/code-box/index.js +178 -0
  7. package/dist/code-box/index.vue.d.ts +20 -0
  8. package/dist/code-box/types.d.ts +64 -0
  9. package/dist/env.d.ts +12 -0
  10. package/dist/index.d.ts +5 -1
  11. package/dist/input-gps/index.js +1 -1
  12. package/dist/input-gps/index.vue.d.ts +1 -1
  13. package/dist/input-icon-selector/index.vue.d.ts +1 -1
  14. package/dist/input-property/index.css +1 -0
  15. package/dist/input-property/index.d.ts +5 -0
  16. package/dist/input-property/index.js +821 -0
  17. package/dist/input-property/index.vue.d.ts +21 -0
  18. package/dist/input-property/types.d.ts +114 -0
  19. package/dist/input-property/validate.d.ts +75 -0
  20. package/dist/load-json/index.css +1 -1
  21. package/dist/load-json/index.js +89 -123
  22. package/dist/load-json/index.vue.d.ts +3 -3
  23. package/dist/me-ui-antdv-next.js +4934 -1528
  24. package/dist/me-ui-antdv-next.umd.cjs +11 -9
  25. package/dist/message/index.vue.d.ts +1 -1
  26. package/dist/modal/index.css +1 -1
  27. package/dist/modal/index.js +7 -1
  28. package/dist/modal/index.vue.d.ts +26 -5
  29. package/dist/modal/types.d.ts +47 -7
  30. package/dist/nav/index.vue.d.ts +3 -3
  31. package/dist/resolver/index.js +4 -1
  32. package/dist/skeleton/index.js +5 -138
  33. package/dist/style.css +1 -1
  34. package/dist/tree-menu/TreeMenuEdit.vue.d.ts +1 -1
  35. package/dist/tree-menu/index.vue.d.ts +1 -1
  36. package/dist/utils/hljs.d.ts +19 -0
  37. package/package.json +2 -2
  38. package/dist/chunks/modal-KBZYtIHD.js +0 -178
@@ -22,11 +22,11 @@ declare const __VLS_base: import('vue').DefineComponent<MeMessageProps, {
22
22
  data: MeMessageData;
23
23
  top: string | number;
24
24
  width: string | number;
25
- centered: boolean;
26
25
  modelValue: boolean;
27
26
  request: (data: any) => Promise<any>;
28
27
  handler: MeMessageHandler;
29
28
  closeOnRouteChange: boolean;
29
+ centered: boolean;
30
30
  onDestroy: () => void;
31
31
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
32
32
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
@@ -1 +1 @@
1
- .me-modal-wrap--fullscreen .ant-modal-container{height:100vh;max-height:100vh;display:block;padding:0!important}.me-modal-wrap--fullscreen .ant-modal{max-width:100%!important;height:100vh!important;max-height:100vh!important;margin:0!important;padding-bottom:0!important;top:0!important}.me-modal-wrap--fullscreen .ant-modal-content{border-radius:0!important;grid-template-rows:auto 1fr auto!important;grid-template-columns:1fr!important;height:100vh!important;max-height:100vh!important;display:grid!important;overflow:hidden!important}.me-modal-wrap--fullscreen .ant-modal-header{border-radius:0!important;grid-area:1/1!important;width:auto!important;margin-bottom:0!important}.me-modal-wrap--fullscreen .ant-modal-body{padding-top:16px;padding-bottom:16px;grid-area:2/1!important;width:auto!important;min-height:0!important;overflow:auto!important}.me-modal-wrap--fullscreen .ant-modal-footer{border-radius:0!important;grid-area:3/1!important;width:auto!important;margin-top:0!important}.me-modal__title-row{width:100%}.me-modal__title-text{color:var(--me-text-primary);font-size:16px;font-weight:600;line-height:1.4}.ant-modal-header{position:relative}.ant-modal-header .me-modal__fullscreen-btn{cursor:pointer;color:#00000073;z-index:1;border-radius:4px;justify-content:center;align-items:center;width:22px;height:22px;line-height:22px;transition:all .2s cubic-bezier(.645,.045,.355,1);display:inline-flex;position:absolute;top:50%;right:40px;transform:translateY(-50%)}.ant-modal-header .me-modal__fullscreen-btn:hover{color:#000000e0;background-color:#0000000f}html.dark .ant-modal-header .me-modal__fullscreen-btn{color:#ffffffa6}html.dark .ant-modal-header .me-modal__fullscreen-btn:hover{color:#fffffff2;background-color:#ffffff14}
1
+ .me-modal{z-index:var(--me-modal-z);pointer-events:none;position:fixed;inset:0}.me-modal__mask{background:var(--me-mask-bg,#00000073);z-index:1;pointer-events:auto;position:absolute;inset:0}.me-modal__wrap{z-index:2;pointer-events:none;justify-content:center;display:flex;position:absolute;inset:0}.me-modal__panel{background:var(--me-bg-color-overlay);min-width:0;max-height:100%;box-shadow:var(--me-box-shadow);pointer-events:auto;border-radius:10px;flex-direction:column;display:flex}.me-modal--dividers .me-modal__header{border-bottom:1px solid var(--me-border-color-light)}.me-modal--dividers .me-modal__footer{border-top:1px solid var(--me-border-color-light)}.me-modal--fullscreen .me-modal__panel{border-radius:0;max-height:100vh}.me-modal__header{flex-shrink:0;justify-content:space-between;align-items:center;gap:16px;padding:16px 24px;display:flex}.me-modal__title-row{min-width:0}.me-modal__title-text{color:var(--me-text-primary);font-size:16px;font-weight:600;line-height:1.4}.me-modal__actions{align-items:center;gap:4px;display:flex}.me-modal__action-btn{border-radius:var(--me-border-radius-base);cursor:pointer;width:28px;height:28px;color:var(--me-text-secondary);background:0 0;border:none;justify-content:center;align-items:center;padding:0;transition:background-color .2s cubic-bezier(.645,.045,.355,1),color .2s cubic-bezier(.645,.045,.355,1);display:inline-flex}.me-modal__action-btn:hover{background-color:var(--me-fill-color);color:var(--me-text-primary)}.me-modal__body{min-height:0;color:var(--me-text-regular);flex:1;padding:0 24px;font-size:14px;line-height:1.6;overflow:auto}.me-modal__skeleton{width:100%}.me-modal__footer{flex-shrink:0;justify-content:flex-end;gap:8px;padding:12px 24px;display:flex}.me-modal__btn{border-radius:var(--me-border-radius-base);cursor:pointer;-webkit-user-select:none;user-select:none;border:1px solid #0000;justify-content:center;align-items:center;height:32px;padding:0 15px;font-size:14px;line-height:1.5715;transition:all .2s cubic-bezier(.645,.045,.355,1);display:inline-flex}.me-modal__btn--default{background:var(--me-bg-color);border-color:var(--me-border-color);color:var(--me-text-primary)}.me-modal__btn--default:hover{color:var(--me-color-primary);border-color:var(--me-color-primary)}.me-modal__btn--primary{background:var(--me-color-primary);border-color:var(--me-color-primary);color:var(--me-color-primary-text)}.me-modal__btn--primary:hover{background:var(--me-color-primary-light-3);border-color:var(--me-color-primary-light-3)}.me-modal-enter-active,.me-modal-leave-active{transition:opacity .24s cubic-bezier(.645,.045,.355,1)}.me-modal-enter-active .me-modal__panel,.me-modal-leave-active .me-modal__panel{transition:transform .24s cubic-bezier(.645,.045,.355,1)}.me-modal-enter-from,.me-modal-leave-to{opacity:0}.me-modal-enter-from .me-modal__panel,.me-modal-leave-to .me-modal__panel{transform:scale(.92)}
@@ -1,2 +1,8 @@
1
- import { n as e, t } from "../chunks/modal-KBZYtIHD.js";
1
+ import { t as e } from "../chunks/modal-D4Tl-Qzk.js";
2
+ //#region src/components/modal/index.ts
3
+ e.install = (t) => {
4
+ t.component("MeModal", e);
5
+ };
6
+ var t = e;
7
+ //#endregion
2
8
  export { e as MeModal, t as default };
@@ -1,9 +1,15 @@
1
1
  import { MeModalProps } from './types';
2
- declare var __VLS_18: {}, __VLS_30: {};
2
+ declare var __VLS_13: {}, __VLS_15: {}, __VLS_32: {}, __VLS_39: {}, __VLS_41: {};
3
3
  type __VLS_Slots = {} & {
4
- title?: (props: typeof __VLS_18) => any;
4
+ header?: (props: typeof __VLS_13) => any;
5
5
  } & {
6
- default?: (props: typeof __VLS_30) => any;
6
+ title?: (props: typeof __VLS_15) => any;
7
+ } & {
8
+ loading?: (props: typeof __VLS_32) => any;
9
+ } & {
10
+ default?: (props: typeof __VLS_39) => any;
11
+ } & {
12
+ footer?: (props: typeof __VLS_41) => any;
7
13
  };
8
14
  declare const __VLS_base: import('vue').DefineComponent<MeModalProps, {
9
15
  /** 切换全屏 */
@@ -14,17 +20,32 @@ declare const __VLS_base: import('vue').DefineComponent<MeModalProps, {
14
20
  "fullscreen-change": (value: boolean) => any;
15
21
  "update:open": (value: boolean) => any;
16
22
  ok: (event: MouseEvent) => any;
17
- cancel: (event: MouseEvent) => any;
23
+ cancel: (event: MouseEvent | Event) => any;
18
24
  }, string, import('vue').PublicProps, Readonly<MeModalProps> & Readonly<{
19
25
  "onFullscreen-change"?: ((value: boolean) => any) | undefined;
20
26
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
21
27
  onOk?: ((event: MouseEvent) => any) | undefined;
22
- onCancel?: ((event: MouseEvent) => any) | undefined;
28
+ onCancel?: ((event: MouseEvent | Event) => any) | undefined;
23
29
  }>, {
30
+ loading: boolean;
31
+ footer: boolean;
32
+ mask: boolean;
24
33
  width: string | number;
25
34
  fullscreen: boolean;
26
35
  defaultFullscreen: boolean;
27
36
  open: boolean;
37
+ position: import('./types').MeModalPosition;
38
+ offsetTop: number;
39
+ offsetBottom: number;
40
+ offsetLeft: number;
41
+ offsetRight: number;
42
+ maskClosable: boolean;
43
+ closable: boolean;
44
+ keyboard: boolean;
45
+ okText: string;
46
+ cancelText: string;
47
+ dividers: boolean;
48
+ zIndex: number;
28
49
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
29
50
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
30
51
  declare const _default: typeof __VLS_export;
@@ -1,14 +1,54 @@
1
- import { ModalProps } from 'antdv-next';
2
- /** MeModal 对话框 Props */
3
- export interface MeModalProps extends Omit<ModalProps, 'open'> {
1
+ import { CSSProperties, VNode } from 'vue';
2
+ /** 弹窗位置预设 */
3
+ export type MeModalPosition = 'top' | 'center' | 'bottom';
4
+ /** MeModal 对话框 Props(完全原生实现,不依赖 a-modal) */
5
+ export interface MeModalProps {
4
6
  /** 是否显示(v-model:open) */
5
7
  open?: boolean;
8
+ /** 弹窗宽度,默认 520(全屏时自动 100%) */
9
+ width?: string | number;
10
+ /** 弹窗整体总高;设置后进入「容器定高 + body 内容区滚动」模式,不设则内容撑高 */
11
+ height?: string | number;
12
+ /** 弹窗位置预设,默认 top */
13
+ position?: MeModalPosition;
14
+ /** 顶部偏移(面板距视口顶部),默认 100 */
15
+ offsetTop?: number;
16
+ /** 底部偏移(面板距视口底部),默认 48 */
17
+ offsetBottom?: number;
18
+ /** 左侧偏移,默认 16 */
19
+ offsetLeft?: number;
20
+ /** 右侧偏移,默认 16 */
21
+ offsetRight?: number;
22
+ /** 标题(默认标题文本;也可用 title 插槽) */
23
+ title?: string | VNode;
24
+ /** 是否显示背后遮罩,默认 true */
25
+ mask?: boolean;
26
+ /** 点击遮罩是否关闭,默认 true */
27
+ maskClosable?: boolean;
28
+ /** 背后遮罩自定义内联样式(覆盖默认 rgba 半透明黑),默认深色半透明 */
29
+ maskStyle?: CSSProperties;
30
+ /** 是否显示右上角关闭按钮,默认 true */
31
+ closable?: boolean;
32
+ /** 是否支持 Esc 关闭,默认 true */
33
+ keyboard?: boolean;
6
34
  /** 是否显示全屏按钮,默认 true */
7
35
  fullscreen?: boolean;
8
36
  /** 是否默认全屏显示,默认 false */
9
37
  defaultFullscreen?: boolean;
10
- /** 对话框宽度,默认 520(非全屏状态下生效) */
11
- width?: string | number;
38
+ /** 是否显示 loading(有 loading 插槽渲染插槽,否则展示内置骨架屏) */
39
+ loading?: boolean;
40
+ /** 确定按钮文案,默认「确定」 */
41
+ okText?: string;
42
+ /** 取消按钮文案,默认「取消」 */
43
+ cancelText?: string;
44
+ /** 是否渲染底部操作区,默认 true;用 footer 插槽可完全自定义 */
45
+ footer?: boolean;
46
+ /** 是否显示 header / footer 上下分割线,默认 false(隐藏) */
47
+ dividers?: boolean;
48
+ /** 弹窗层级,默认 1000 */
49
+ zIndex?: number;
50
+ /** body 内容区自定义内联样式 */
51
+ bodyStyle?: CSSProperties;
12
52
  }
13
53
  /** MeModal 对话框 Events */
14
54
  export interface MeModalEmits {
@@ -17,8 +57,8 @@ export interface MeModalEmits {
17
57
  (e: 'fullscreen-change', value: boolean): void;
18
58
  /** 点击确定按钮 */
19
59
  (e: 'ok', event: MouseEvent): void;
20
- /** 点击取消按钮 */
21
- (e: 'cancel', event: MouseEvent): void;
60
+ /** 点击取消按钮 / 关闭按钮 / Esc / 遮罩 */
61
+ (e: 'cancel', event: MouseEvent | Event): void;
22
62
  }
23
63
  /** MeModal 组件实例类型 */
24
64
  export type MeModalInstance = InstanceType<typeof import('./index.vue').default>;
@@ -29,8 +29,8 @@ declare const __VLS_base: import('vue').DefineComponent<MeNavProps, {
29
29
  activeItem: import('vue').ComputedRef<MeNavTabItemData | undefined>;
30
30
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
31
31
  scroll: (translateX: number) => any;
32
- "update:modelValue": (value: string) => any;
33
32
  contextmenu: (payload: import('./types').MeNavContextMenuPayload) => any;
33
+ "update:modelValue": (value: string) => any;
34
34
  "toggle-lock": (payload: import('./types').MeNavToggleLockPayload) => any;
35
35
  refresh: (payload: import('./types').MeNavBuiltinMenuPayload) => any;
36
36
  "close-current": (payload: import('./types').MeNavBuiltinMenuPayload) => any;
@@ -42,8 +42,8 @@ declare const __VLS_base: import('vue').DefineComponent<MeNavProps, {
42
42
  "tab-remove": (payload: import('./types').MeNavTabRemovePayload) => any;
43
43
  }, string, import('vue').PublicProps, Readonly<MeNavProps> & Readonly<{
44
44
  onScroll?: ((translateX: number) => any) | undefined;
45
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
46
45
  onContextmenu?: ((payload: import('./types').MeNavContextMenuPayload) => any) | undefined;
46
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
47
47
  "onToggle-lock"?: ((payload: import('./types').MeNavToggleLockPayload) => any) | undefined;
48
48
  onRefresh?: ((payload: import('./types').MeNavBuiltinMenuPayload) => any) | undefined;
49
49
  "onClose-current"?: ((payload: import('./types').MeNavBuiltinMenuPayload) => any) | undefined;
@@ -55,8 +55,8 @@ declare const __VLS_base: import('vue').DefineComponent<MeNavProps, {
55
55
  "onTab-remove"?: ((payload: import('./types').MeNavTabRemovePayload) => any) | undefined;
56
56
  }>, {
57
57
  width: number | string;
58
- keyboard: boolean;
59
58
  closable: boolean;
59
+ keyboard: boolean;
60
60
  modelValue: string;
61
61
  tabList: MeNavTabItemData[];
62
62
  contextMenu: MeNavMenuItem[] | ((item: MeNavTabItemData, index: number) => MeNavMenuItem[]);
@@ -15,7 +15,10 @@ var e = {
15
15
  MeLoadJson: "load-json",
16
16
  MeLoginPage: "login-page",
17
17
  MeCard: "card",
18
- MeSkeleton: "skeleton"
18
+ MeSkeleton: "skeleton",
19
+ MeInputProperty: "input-property",
20
+ MeCodeBox: "code-box",
21
+ MeCodeItem: "code-box"
19
22
  };
20
23
  //#endregion
21
24
  //#region src/resolver/index.ts
@@ -1,141 +1,8 @@
1
- import { Fragment as e, computed as t, createCommentVNode as n, createElementBlock as r, createElementVNode as i, defineComponent as a, mergeProps as o, normalizeClass as s, normalizeStyle as c, openBlock as l, renderList as u, renderSlot as d } from "vue";
2
- //#region src/components/skeleton/index.vue?vue&type=script&setup=true&lang.ts
3
- var f = { class: "me-skeleton__card-body" }, p = { class: "me-skeleton__avatar-content" }, m = { class: "me-skeleton__list-content" }, h = /* @__PURE__ */ a({
4
- name: "MeSkeleton",
5
- __name: "index",
6
- props: {
7
- preset: { default: "text" },
8
- loading: {
9
- type: Boolean,
10
- default: !0
11
- },
12
- animated: {
13
- type: Boolean,
14
- default: !0
15
- },
16
- rows: { default: void 0 },
17
- height: { default: void 0 },
18
- rowHeight: { default: 16 },
19
- rowGap: { default: 12 },
20
- avatar: {
21
- type: Boolean,
22
- default: !0
23
- },
24
- avatarSize: { default: 36 },
25
- avatarShape: { default: "circle" },
26
- titleWidth: { default: .5 },
27
- lastRowWidth: { default: .7 },
28
- cardImage: {
29
- type: Boolean,
30
- default: !0
31
- },
32
- cardImageHeight: { default: 120 }
33
- },
34
- setup(a) {
35
- let h = a, g = t(() => {
36
- if (h.rows !== void 0 && h.rows > 0) return h.rows;
37
- if (h.height) {
38
- let e = typeof h.height == "number" ? h.height : parseFloat(h.height);
39
- if (!isNaN(e) && e > 0) return Math.max(1, Math.floor((e + h.rowGap) / (h.rowHeight + h.rowGap)));
40
- }
41
- return h.preset === "article" ? 5 : (h.preset === "text" || h.preset, 3);
42
- }), _ = t(() => h.rows !== void 0 && h.rows > 0 ? h.rows : 2), v = t(() => {
43
- if (h.rows !== void 0 && h.rows > 0) return h.rows;
44
- if (h.height) {
45
- let e = typeof h.height == "number" ? h.height : parseFloat(h.height);
46
- if (!isNaN(e) && e > 0) {
47
- let t = h.avatarSize + 8;
48
- return Math.max(1, Math.floor(e / t));
49
- }
50
- }
51
- return 3;
52
- }), y = t(() => Math.min(1, Math.max(.1, h.titleWidth))), b = t(() => Math.min(1, Math.max(.1, h.lastRowWidth))), x = (e, t) => t <= 1 ? .6 : e === t ? b.value : .85 + (Math.sin(e * 1.7 + .5) * .5 + .5) * .15000000000000002, S = (e, t) => {
53
- let n = {
54
- height: `${h.rowHeight}px`,
55
- width: `${x(e, t) * 100}%`
56
- };
57
- return e > 1 && (n.marginTop = `${h.rowGap}px`), n;
58
- }, C = t(() => {
59
- let e = {};
60
- return h.height && h.preset !== "card" && h.preset !== "avatar" && (e.height = typeof h.height == "number" ? `${h.height}px` : h.height), e;
61
- });
62
- return (t, b) => h.loading ? (l(), r("div", o({
63
- key: 0,
64
- class: ["me-skeleton", [`me-skeleton--${h.preset}`, { "me-skeleton--animated": h.animated }]],
65
- style: C.value
66
- }, t.$attrs), [h.preset === "card" ? (l(), r(e, { key: 0 }, [h.cardImage ? (l(), r("div", {
67
- key: 0,
68
- class: "me-skeleton__card-image me-skeleton__block",
69
- style: c({ height: `${h.cardImageHeight}px` })
70
- }, null, 4)) : n("", !0), i("div", f, [i("div", {
71
- class: "me-skeleton__row me-skeleton__block me-skeleton__row--title",
72
- style: c({
73
- height: `${a.rowHeight}px`,
74
- width: `${y.value * 100}%`
75
- })
76
- }, null, 4), (l(!0), r(e, null, u(_.value, (e) => (l(), r("div", {
77
- key: e,
78
- class: "me-skeleton__row me-skeleton__block",
79
- style: c(S(e, _.value))
80
- }, null, 4))), 128))])], 64)) : h.preset === "avatar" ? (l(), r(e, { key: 1 }, [h.avatar ? (l(), r("div", {
81
- key: 0,
82
- class: s(["me-skeleton__avatar me-skeleton__block", [h.avatarShape === "circle" ? "me-skeleton__avatar--circle" : "me-skeleton__avatar--square"]]),
83
- style: c({
84
- width: `${h.avatarSize}px`,
85
- height: `${h.avatarSize}px`
86
- })
87
- }, null, 6)) : n("", !0), i("div", p, [i("div", {
88
- class: "me-skeleton__row me-skeleton__block me-skeleton__row--title",
89
- style: c({
90
- height: `${a.rowHeight}px`,
91
- width: `${y.value * 100}%`
92
- })
93
- }, null, 4), i("div", {
94
- class: "me-skeleton__row me-skeleton__block",
95
- style: c({
96
- height: `${a.rowHeight}px`,
97
- marginTop: `${a.rowGap}px`,
98
- width: "85%"
99
- })
100
- }, null, 4)])], 64)) : h.preset === "article" ? (l(), r(e, { key: 2 }, [i("div", {
101
- class: "me-skeleton__row me-skeleton__block me-skeleton__row--title",
102
- style: c({
103
- height: `${a.rowHeight}px`,
104
- width: `${y.value * 100}%`,
105
- marginBottom: `${a.rowGap + 8}px`
106
- })
107
- }, null, 4), (l(!0), r(e, null, u(g.value, (e) => (l(), r("div", {
108
- key: e,
109
- class: "me-skeleton__row me-skeleton__block",
110
- style: c(S(e, g.value))
111
- }, null, 4))), 128))], 64)) : h.preset === "list" ? (l(!0), r(e, { key: 3 }, u(v.value, (e) => (l(), r("div", {
112
- key: e,
113
- class: "me-skeleton__list-item"
114
- }, [b[0] ||= i("div", { class: "me-skeleton__list-avatar me-skeleton__block" }, null, -1), i("div", m, [i("div", {
115
- class: "me-skeleton__row me-skeleton__block",
116
- style: c({
117
- height: `${a.rowHeight}px`,
118
- width: `${e % 2 == 0 ? 50 : 40}%`
119
- })
120
- }, null, 4), i("div", {
121
- class: "me-skeleton__row me-skeleton__block",
122
- style: c({
123
- height: `${a.rowHeight}px`,
124
- marginTop: `${a.rowGap}px`,
125
- width: `${e % 3 == 0 ? 90 : 75}%`
126
- })
127
- }, null, 4)])]))), 128)) : (l(!0), r(e, { key: 4 }, u(g.value, (e) => (l(), r("div", {
128
- key: e,
129
- class: "me-skeleton__row me-skeleton__block",
130
- style: c(S(e, g.value))
131
- }, null, 4))), 128))], 16)) : d(t.$slots, "default", {}, void 0, void 0, 1);
132
- }
133
- });
134
- //#endregion
1
+ import { t as e } from "../chunks/skeleton-D1-aYUPf.js";
135
2
  //#region src/components/skeleton/index.ts
136
- h.install = (e) => {
137
- e.component("MeSkeleton", h);
3
+ e.install = (t) => {
4
+ t.component("MeSkeleton", e);
138
5
  };
139
- var g = h;
6
+ var t = e;
140
7
  //#endregion
141
- export { h as MeSkeleton, g as default };
8
+ export { e as MeSkeleton, t as default };