@astrake/lumora-ui 0.1.6 → 0.2.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.
- package/CHANGELOG.md +141 -92
- package/dist/LuCodeBlock.vue_vue_type_script_setup_true_lang-BjwcjuXF.js +1623 -0
- package/dist/LuEmbeddedStatusBar.vue_vue_type_script_setup_true_lang-CIksvebU.js +218 -0
- package/dist/LuOverlay.vue_vue_type_script_setup_true_lang-DZch4Vrw.js +226 -0
- package/dist/components/LuAlert.vue.d.ts +20 -0
- package/dist/components/LuAvatar.vue.d.ts +19 -0
- package/dist/components/LuBadge.vue.d.ts +16 -0
- package/dist/components/LuBreadcrumb.vue.d.ts +16 -0
- package/dist/components/LuButton.vue.d.ts +24 -0
- package/dist/components/LuCard.vue.d.ts +21 -0
- package/dist/components/LuCheckbox.vue.d.ts +27 -0
- package/dist/components/LuCodeBlock.vue.d.ts +29 -0
- package/dist/components/LuCollapsible.vue.d.ts +25 -0
- package/dist/components/LuDivider.vue.d.ts +8 -0
- package/dist/components/LuForm.types.d.ts +18 -0
- package/dist/components/LuForm.vue.d.ts +55 -0
- package/dist/components/LuIcon.vue.d.ts +18 -0
- package/dist/components/LuInput.vue.d.ts +26 -0
- package/dist/components/LuLink.vue.d.ts +23 -0
- package/dist/components/LuMenu.vue.d.ts +26 -0
- package/dist/components/LuMenuItem.vue.d.ts +20 -0
- package/dist/components/LuModal.vue.d.ts +32 -0
- package/dist/components/LuPageHeader.vue.d.ts +10 -0
- package/dist/components/LuPagination.vue.d.ts +18 -0
- package/dist/components/LuProgressBar.vue.d.ts +7 -0
- package/dist/components/LuRadio.vue.d.ts +18 -0
- package/dist/components/LuRadioGroup.types.d.ts +8 -0
- package/dist/components/LuRadioGroup.vue.d.ts +24 -0
- package/dist/components/LuSelect.vue.d.ts +18 -0
- package/dist/components/LuSkeleton.vue.d.ts +5 -0
- package/dist/components/LuSpinner.vue.d.ts +5 -0
- package/dist/components/LuSwitch.vue.d.ts +15 -0
- package/dist/components/LuTab.vue.d.ts +16 -0
- package/dist/components/LuTabList.vue.d.ts +15 -0
- package/dist/components/LuTabPanel.vue.d.ts +16 -0
- package/dist/components/LuTable.vue.d.ts +15 -0
- package/dist/components/LuTableBody.vue.d.ts +15 -0
- package/dist/components/LuTableCell.vue.d.ts +15 -0
- package/dist/components/LuTableHead.vue.d.ts +15 -0
- package/dist/components/LuTableHeadCell.vue.d.ts +15 -0
- package/dist/components/LuTableRow.vue.d.ts +15 -0
- package/dist/components/LuTabs.vue.d.ts +20 -0
- package/dist/components/LuTag.vue.d.ts +20 -0
- package/dist/components/LuText.vue.d.ts +16 -0
- package/dist/components/LuTextarea.vue.d.ts +14 -0
- package/dist/components/LuThemeSelect.vue.d.ts +2 -0
- package/dist/components/LuThemeSwitch.vue.d.ts +2 -0
- package/dist/components/LuToggleButton.vue.d.ts +16 -0
- package/dist/components/LuToggleGroup.vue.d.ts +20 -0
- package/dist/components/LuTooltip.vue.d.ts +19 -0
- package/dist/components/__tests__/LuForm.test.d.ts +1 -0
- package/{src/components/index.ts → dist/components/index.d.ts} +16 -0
- package/dist/components/index.js +47 -0
- package/{src/composables/index.ts → dist/composables/index.d.ts} +0 -1
- package/dist/composables/index.js +30 -0
- package/dist/composables/useRail.d.ts +6 -0
- package/dist/composables/useSplit.d.ts +4 -0
- package/dist/composables/useTheme.d.ts +7 -0
- package/dist/context-0gENwESP.js +62 -0
- package/dist/context.d.ts +8 -0
- package/{src/index.ts → dist/index.d.ts} +2 -3
- package/dist/index.js +94 -0
- package/dist/layout/LuDock.vue.d.ts +9 -0
- package/dist/layout/LuDockItem.vue.d.ts +16 -0
- package/dist/layout/LuFill.vue.d.ts +21 -0
- package/dist/layout/LuFixed.vue.d.ts +21 -0
- package/dist/layout/LuGrid.vue.d.ts +26 -0
- package/dist/layout/LuOverlay.vue.d.ts +15 -0
- package/dist/layout/LuScroll.vue.d.ts +15 -0
- package/dist/layout/LuSplit.vue.d.ts +16 -0
- package/dist/layout/LuSplitPane.vue.d.ts +18 -0
- package/dist/layout/LuSplitResizer.vue.d.ts +5 -0
- package/dist/layout/LuStack.vue.d.ts +23 -0
- package/{src/layout/index.ts → dist/layout/index.d.ts} +1 -14
- package/dist/layout/index.js +14 -0
- package/dist/plugin.d.ts +6 -0
- package/dist/shell/desktop/LuDesktopRailBar.vue.d.ts +17 -0
- package/dist/shell/desktop/LuDesktopRailItem.vue.d.ts +18 -0
- package/dist/shell/desktop/LuDesktopShell.vue.d.ts +23 -0
- package/dist/shell/desktop/LuDesktopSidebar.vue.d.ts +21 -0
- package/dist/shell/desktop/LuDesktopStatusBar.vue.d.ts +15 -0
- package/dist/shell/desktop/LuDesktopTopBar.vue.d.ts +15 -0
- package/dist/shell/embedded/LuEmbeddedShell.vue.d.ts +19 -0
- package/dist/shell/embedded/LuEmbeddedStatusBar.vue.d.ts +17 -0
- package/dist/shell/embedded/LuEmbeddedTopBar.vue.d.ts +19 -0
- package/{src/shell/index.ts → dist/shell/index.d.ts} +4 -2
- package/dist/shell/index.js +15 -0
- package/dist/shell/mobile/LuMobileHeader.vue.d.ts +19 -0
- package/dist/shell/mobile/LuMobileNavBar.vue.d.ts +15 -0
- package/dist/shell/mobile/LuMobileShell.vue.d.ts +21 -0
- package/dist/skins/default.d.ts +2 -0
- package/dist/skins/index.js +416 -0
- package/dist/tailwind.d.ts +1 -0
- package/dist/tailwind.js +13 -0
- package/dist/types.d.ts +15 -0
- package/dist/useTheme-Cd4wVaLs.js +21 -0
- package/dist/utils.d.ts +21 -0
- package/package.json +94 -61
- package/src/lumora.css +16 -0
- package/src/components/LuAvatar.vue +0 -22
- package/src/components/LuBadge.vue +0 -15
- package/src/components/LuButton.vue +0 -58
- package/src/components/LuCard.vue +0 -20
- package/src/components/LuCollapsible.vue +0 -34
- package/src/components/LuDivider.vue +0 -18
- package/src/components/LuForm.types.ts +0 -24
- package/src/components/LuForm.vue +0 -121
- package/src/components/LuIcon.vue +0 -39
- package/src/components/LuInput.vue +0 -62
- package/src/components/LuLink.vue +0 -47
- package/src/components/LuPageHeader.vue +0 -24
- package/src/components/LuProgressBar.vue +0 -21
- package/src/components/LuSelect.vue +0 -67
- package/src/components/LuSwitch.vue +0 -74
- package/src/components/LuTab.vue +0 -26
- package/src/components/LuTabList.vue +0 -15
- package/src/components/LuTabPanel.vue +0 -19
- package/src/components/LuTable.vue +0 -15
- package/src/components/LuTableBody.vue +0 -15
- package/src/components/LuTableCell.vue +0 -15
- package/src/components/LuTableHead.vue +0 -15
- package/src/components/LuTableHeadCell.vue +0 -15
- package/src/components/LuTableRow.vue +0 -15
- package/src/components/LuTabs.vue +0 -30
- package/src/components/LuText.vue +0 -18
- package/src/components/LuThemeSelect.vue +0 -26
- package/src/components/LuThemeSwitch.vue +0 -22
- package/src/components/LuTooltip.vue +0 -36
- package/src/components/__tests__/LuForm.test.ts +0 -206
- package/src/composables/useRail.ts +0 -24
- package/src/composables/useSplit.ts +0 -17
- package/src/composables/useTheme.ts +0 -36
- package/src/context.ts +0 -36
- package/src/layout/LuDock.vue +0 -23
- package/src/layout/LuDockItem.vue +0 -18
- package/src/layout/LuFill.vue +0 -17
- package/src/layout/LuFixed.vue +0 -17
- package/src/layout/LuGrid.vue +0 -22
- package/src/layout/LuOverlay.vue +0 -17
- package/src/layout/LuScroll.vue +0 -17
- package/src/layout/LuSplit.vue +0 -23
- package/src/layout/LuSplitPane.vue +0 -32
- package/src/layout/LuSplitResizer.vue +0 -17
- package/src/layout/LuStack.vue +0 -24
- package/src/plugin.ts +0 -27
- package/src/shell/desktop/LuDesktopRailBar.vue +0 -23
- package/src/shell/desktop/LuDesktopRailItem.vue +0 -23
- package/src/shell/desktop/LuDesktopShell.vue +0 -25
- package/src/shell/desktop/LuDesktopSidebar.vue +0 -36
- package/src/shell/desktop/LuDesktopStatusBar.vue +0 -15
- package/src/shell/desktop/LuDesktopTopBar.vue +0 -15
- package/src/shell/embedded/LuEmbeddedShell.vue +0 -20
- package/src/shell/mobile/LuMobileShell.vue +0 -21
- package/src/skins/default.ts +0 -94
- package/src/types.ts +0 -18
- package/tsconfig.json +0 -10
- /package/{src/skins/index.ts → dist/skins/index.d.ts} +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
variant?: string;
|
|
3
|
+
position?: "top" | "bottom" | "left" | "right";
|
|
4
|
+
delay?: number;
|
|
5
|
+
};
|
|
6
|
+
declare var __VLS_1: {}, __VLS_3: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
trigger?: (props: typeof __VLS_1) => any;
|
|
9
|
+
} & {
|
|
10
|
+
content?: (props: typeof __VLS_3) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
16
|
+
new (): {
|
|
17
|
+
$slots: S;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -26,4 +26,20 @@ export { default as LuTableRow } from "./LuTableRow.vue";
|
|
|
26
26
|
export { default as LuTableHeadCell } from "./LuTableHeadCell.vue";
|
|
27
27
|
export { default as LuTableCell } from "./LuTableCell.vue";
|
|
28
28
|
export { default as LuForm } from "./LuForm.vue";
|
|
29
|
+
export { default as LuTextarea } from "./LuTextarea.vue";
|
|
30
|
+
export { default as LuCheckbox } from "./LuCheckbox.vue";
|
|
31
|
+
export { default as LuRadioGroup } from "./LuRadioGroup.vue";
|
|
32
|
+
export { default as LuRadio } from "./LuRadio.vue";
|
|
33
|
+
export { default as LuAlert } from "./LuAlert.vue";
|
|
34
|
+
export { default as LuSpinner } from "./LuSpinner.vue";
|
|
35
|
+
export { default as LuSkeleton } from "./LuSkeleton.vue";
|
|
36
|
+
export { default as LuTag } from "./LuTag.vue";
|
|
37
|
+
export { default as LuBreadcrumb } from "./LuBreadcrumb.vue";
|
|
38
|
+
export { default as LuMenu } from "./LuMenu.vue";
|
|
39
|
+
export { default as LuMenuItem } from "./LuMenuItem.vue";
|
|
40
|
+
export { default as LuPagination } from "./LuPagination.vue";
|
|
41
|
+
export { default as LuModal } from "./LuModal.vue";
|
|
42
|
+
export { default as LuToggleGroup } from "./LuToggleGroup.vue";
|
|
43
|
+
export { default as LuToggleButton } from "./LuToggleButton.vue";
|
|
44
|
+
export { default as LuCodeBlock } from "./LuCodeBlock.vue";
|
|
29
45
|
export type { LuFormRules, LuFormErrors, LuFormValidator, LuFormContext } from "./LuForm.types";
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { _ as s, a as L, b as e, c as o, d as l, e as t, f as r, g as T, h as b, i, j as n, k as d, l as g, m as c, n as p, o as B, p as m, q as C, r as h, s as S, t as k, u as x, v as P, w, x as H, y as I, z as M, A as v, B as A, C as G, D as R, E as f, F as y, G as D, H as F, I as j, J as q, K as z, L as E, M as J, N as K, O as N, P as O, Q } from "../LuCodeBlock.vue_vue_type_script_setup_true_lang-BjwcjuXF.js";
|
|
2
|
+
export {
|
|
3
|
+
s as LuAlert,
|
|
4
|
+
L as LuAvatar,
|
|
5
|
+
e as LuBadge,
|
|
6
|
+
o as LuBreadcrumb,
|
|
7
|
+
l as LuButton,
|
|
8
|
+
t as LuCard,
|
|
9
|
+
r as LuCheckbox,
|
|
10
|
+
T as LuCodeBlock,
|
|
11
|
+
b as LuCollapsible,
|
|
12
|
+
i as LuDivider,
|
|
13
|
+
n as LuForm,
|
|
14
|
+
d as LuIcon,
|
|
15
|
+
g as LuInput,
|
|
16
|
+
c as LuLink,
|
|
17
|
+
p as LuMenu,
|
|
18
|
+
B as LuMenuItem,
|
|
19
|
+
m as LuModal,
|
|
20
|
+
C as LuPageHeader,
|
|
21
|
+
h as LuPagination,
|
|
22
|
+
S as LuProgressBar,
|
|
23
|
+
k as LuRadio,
|
|
24
|
+
x as LuRadioGroup,
|
|
25
|
+
P as LuSelect,
|
|
26
|
+
w as LuSkeleton,
|
|
27
|
+
H as LuSpinner,
|
|
28
|
+
I as LuSwitch,
|
|
29
|
+
M as LuTab,
|
|
30
|
+
v as LuTabList,
|
|
31
|
+
A as LuTabPanel,
|
|
32
|
+
G as LuTable,
|
|
33
|
+
R as LuTableBody,
|
|
34
|
+
f as LuTableCell,
|
|
35
|
+
y as LuTableHead,
|
|
36
|
+
D as LuTableHeadCell,
|
|
37
|
+
F as LuTableRow,
|
|
38
|
+
j as LuTabs,
|
|
39
|
+
q as LuTag,
|
|
40
|
+
z as LuText,
|
|
41
|
+
E as LuTextarea,
|
|
42
|
+
J as LuThemeSelect,
|
|
43
|
+
K as LuThemeSwitch,
|
|
44
|
+
N as LuToggleButton,
|
|
45
|
+
O as LuToggleGroup,
|
|
46
|
+
Q as LuTooltip
|
|
47
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ref as a, readonly as r } from "vue";
|
|
2
|
+
import { u as g } from "../useTheme-Cd4wVaLs.js";
|
|
3
|
+
function s(n = !1) {
|
|
4
|
+
const e = a(n);
|
|
5
|
+
function o() {
|
|
6
|
+
e.value = !e.value;
|
|
7
|
+
}
|
|
8
|
+
function i() {
|
|
9
|
+
e.value = !0;
|
|
10
|
+
}
|
|
11
|
+
function t() {
|
|
12
|
+
e.value = !1;
|
|
13
|
+
}
|
|
14
|
+
return {
|
|
15
|
+
isExpanded: r(e),
|
|
16
|
+
toggle: o,
|
|
17
|
+
expand: i,
|
|
18
|
+
collapse: t
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
function l(n, e = "horizontal", o) {
|
|
22
|
+
return {
|
|
23
|
+
isDragging: a(!1)
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
export {
|
|
27
|
+
s as useRail,
|
|
28
|
+
l as useSplit,
|
|
29
|
+
g as useTheme
|
|
30
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type ThemeMode = "system" | "light" | "dark";
|
|
2
|
+
export type ResolvedTheme = "light" | "dark";
|
|
3
|
+
export declare function useTheme(): {
|
|
4
|
+
mode: import("vue").Ref<ThemeMode, ThemeMode>;
|
|
5
|
+
resolved: import("vue").ComputedRef<ResolvedTheme>;
|
|
6
|
+
setMode: (newMode: ThemeMode) => void;
|
|
7
|
+
};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { inject as a, isRef as l } from "vue";
|
|
2
|
+
import { clsx as h } from "clsx";
|
|
3
|
+
import { twMerge as m } from "tailwind-merge";
|
|
4
|
+
import { defaultSkin as d } from "./skins/index.js";
|
|
5
|
+
function r(...e) {
|
|
6
|
+
return m(h(e));
|
|
7
|
+
}
|
|
8
|
+
function g(e, n) {
|
|
9
|
+
const t = { ...e };
|
|
10
|
+
for (const s in n) {
|
|
11
|
+
if (!t[s]) {
|
|
12
|
+
t[s] = { ...n[s] };
|
|
13
|
+
continue;
|
|
14
|
+
}
|
|
15
|
+
const u = t[s], f = n[s], o = { ...u };
|
|
16
|
+
for (const i in f)
|
|
17
|
+
u[i] ? o[i] = r(u[i], f[i]) : o[i] = f[i];
|
|
18
|
+
t[s] = o;
|
|
19
|
+
}
|
|
20
|
+
return t;
|
|
21
|
+
}
|
|
22
|
+
function M(e) {
|
|
23
|
+
const n = [];
|
|
24
|
+
if (e.gap && n.push(`gap-${e.gap}`), e.padding && n.push(`p-${e.padding}`), e.align) {
|
|
25
|
+
const t = {
|
|
26
|
+
start: "items-start",
|
|
27
|
+
center: "items-center",
|
|
28
|
+
end: "items-end",
|
|
29
|
+
stretch: "items-stretch",
|
|
30
|
+
baseline: "items-baseline"
|
|
31
|
+
};
|
|
32
|
+
t[e.align] && n.push(t[e.align]);
|
|
33
|
+
}
|
|
34
|
+
if (e.justify) {
|
|
35
|
+
const t = {
|
|
36
|
+
start: "justify-start",
|
|
37
|
+
center: "justify-center",
|
|
38
|
+
end: "justify-end",
|
|
39
|
+
between: "justify-between",
|
|
40
|
+
around: "justify-around",
|
|
41
|
+
evenly: "justify-evenly"
|
|
42
|
+
};
|
|
43
|
+
t[e.justify] && n.push(t[e.justify]);
|
|
44
|
+
}
|
|
45
|
+
return e.width && (e.width === "full" ? n.push("w-full") : e.width === "screen" ? n.push("w-screen") : n.push(`w-${e.width}`)), e.height && (e.height === "full" ? n.push("h-full") : e.height === "screen" ? n.push("h-screen") : n.push(`h-${e.height}`)), n.join(" ");
|
|
46
|
+
}
|
|
47
|
+
const y = Symbol("LumoraUIConfig");
|
|
48
|
+
function b() {
|
|
49
|
+
const e = a(y, {});
|
|
50
|
+
return { config: e, resolveSkin: (s, u) => {
|
|
51
|
+
const f = l(e.skin) ? e.skin.value : e.skin || {}, i = g(d, f)[s];
|
|
52
|
+
if (!i) return "";
|
|
53
|
+
const c = [];
|
|
54
|
+
return i.default && c.push(i.default), u && i[u] && c.push(i[u]), r(c);
|
|
55
|
+
}, resolveIcon: (s, u) => e.icons ? e.icons(s, u) : null };
|
|
56
|
+
}
|
|
57
|
+
export {
|
|
58
|
+
y as L,
|
|
59
|
+
r as c,
|
|
60
|
+
M as r,
|
|
61
|
+
b as u
|
|
62
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type InjectionKey, type Component } from "vue";
|
|
2
|
+
import type { LumoraUIConfig } from "./types";
|
|
3
|
+
export declare const LumoraUIConfigKey: InjectionKey<LumoraUIConfig>;
|
|
4
|
+
export declare function useLumoraConfig(): {
|
|
5
|
+
config: LumoraUIConfig;
|
|
6
|
+
resolveSkin: (componentName: string, variant?: string) => string;
|
|
7
|
+
resolveIcon: (name: string, size?: number) => Component | null;
|
|
8
|
+
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export * from "./types";
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
|
|
2
|
+
export { useLumoraConfig, LumoraUIConfigKey } from "./context";
|
|
3
|
+
export { createLumoraUI } from "./plugin";
|
|
5
4
|
export * from "./layout/index";
|
|
6
5
|
export * from "./shell/index";
|
|
7
6
|
export * from "./components/index";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { L as u } from "./context-0gENwESP.js";
|
|
2
|
+
import { u as d } from "./context-0gENwESP.js";
|
|
3
|
+
import { shallowReactive as L } from "vue";
|
|
4
|
+
import { _ as c, a as n, b as m, c as p, d as T, e as k, f as S, g, h as f, i as B, j as h } from "./LuOverlay.vue_vue_type_script_setup_true_lang-DZch4Vrw.js";
|
|
5
|
+
import { _ as D, a as C, b as I, c as v, d as M, e as R, f as y, g as P, h as w, i as H, j as E, k as F } from "./LuEmbeddedStatusBar.vue_vue_type_script_setup_true_lang-CIksvebU.js";
|
|
6
|
+
import { _ as j, a as A, b as U, c as _, d as z, e as K, f as N, g as O, h as q, i as J, j as Q, k as V, l as W, m as X, n as Y, o as Z, p as $, q as aa, r as ea, s as sa, t as ua, u as La, v as oa, w as la, x as ra, y as ta, z as ia, A as da, B as ba, C as ca, D as na, E as ma, F as pa, G as Ta, H as ka, I as Sa, J as ga, K as fa, L as Ba, M as ha, N as xa, O as Da, P as Ca, Q as Ia } from "./LuCodeBlock.vue_vue_type_script_setup_true_lang-BjwcjuXF.js";
|
|
7
|
+
import { defaultSkin as Ma } from "./skins/index.js";
|
|
8
|
+
function r(a = {}) {
|
|
9
|
+
return {
|
|
10
|
+
install(e) {
|
|
11
|
+
const s = L({
|
|
12
|
+
target: a.target ?? "desktop",
|
|
13
|
+
skin: a.skin,
|
|
14
|
+
locale: a.locale ?? "en-US",
|
|
15
|
+
a11y: a.a11y ?? !0,
|
|
16
|
+
icons: a.icons
|
|
17
|
+
});
|
|
18
|
+
e.provide(u, s), a.global;
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
export {
|
|
23
|
+
j as LuAlert,
|
|
24
|
+
A as LuAvatar,
|
|
25
|
+
U as LuBadge,
|
|
26
|
+
_ as LuBreadcrumb,
|
|
27
|
+
z as LuButton,
|
|
28
|
+
K as LuCard,
|
|
29
|
+
N as LuCheckbox,
|
|
30
|
+
O as LuCodeBlock,
|
|
31
|
+
q as LuCollapsible,
|
|
32
|
+
D as LuDesktopRailBar,
|
|
33
|
+
C as LuDesktopRailItem,
|
|
34
|
+
I as LuDesktopShell,
|
|
35
|
+
v as LuDesktopSidebar,
|
|
36
|
+
M as LuDesktopStatusBar,
|
|
37
|
+
R as LuDesktopTopBar,
|
|
38
|
+
J as LuDivider,
|
|
39
|
+
c as LuDock,
|
|
40
|
+
n as LuDockItem,
|
|
41
|
+
y as LuEmbeddedShell,
|
|
42
|
+
P as LuEmbeddedStatusBar,
|
|
43
|
+
w as LuEmbeddedTopBar,
|
|
44
|
+
m as LuFill,
|
|
45
|
+
p as LuFixed,
|
|
46
|
+
Q as LuForm,
|
|
47
|
+
T as LuGrid,
|
|
48
|
+
V as LuIcon,
|
|
49
|
+
W as LuInput,
|
|
50
|
+
X as LuLink,
|
|
51
|
+
Y as LuMenu,
|
|
52
|
+
Z as LuMenuItem,
|
|
53
|
+
H as LuMobileHeader,
|
|
54
|
+
E as LuMobileNavBar,
|
|
55
|
+
F as LuMobileShell,
|
|
56
|
+
$ as LuModal,
|
|
57
|
+
k as LuOverlay,
|
|
58
|
+
aa as LuPageHeader,
|
|
59
|
+
ea as LuPagination,
|
|
60
|
+
sa as LuProgressBar,
|
|
61
|
+
ua as LuRadio,
|
|
62
|
+
La as LuRadioGroup,
|
|
63
|
+
S as LuScroll,
|
|
64
|
+
oa as LuSelect,
|
|
65
|
+
la as LuSkeleton,
|
|
66
|
+
ra as LuSpinner,
|
|
67
|
+
g as LuSplit,
|
|
68
|
+
f as LuSplitPane,
|
|
69
|
+
B as LuSplitResizer,
|
|
70
|
+
h as LuStack,
|
|
71
|
+
ta as LuSwitch,
|
|
72
|
+
ia as LuTab,
|
|
73
|
+
da as LuTabList,
|
|
74
|
+
ba as LuTabPanel,
|
|
75
|
+
ca as LuTable,
|
|
76
|
+
na as LuTableBody,
|
|
77
|
+
ma as LuTableCell,
|
|
78
|
+
pa as LuTableHead,
|
|
79
|
+
Ta as LuTableHeadCell,
|
|
80
|
+
ka as LuTableRow,
|
|
81
|
+
Sa as LuTabs,
|
|
82
|
+
ga as LuTag,
|
|
83
|
+
fa as LuText,
|
|
84
|
+
Ba as LuTextarea,
|
|
85
|
+
ha as LuThemeSelect,
|
|
86
|
+
xa as LuThemeSwitch,
|
|
87
|
+
Da as LuToggleButton,
|
|
88
|
+
Ca as LuToggleGroup,
|
|
89
|
+
Ia as LuTooltip,
|
|
90
|
+
u as LumoraUIConfigKey,
|
|
91
|
+
r as createLumoraUI,
|
|
92
|
+
Ma as defaultSkin,
|
|
93
|
+
d as useLumoraConfig
|
|
94
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { VNode } from "vue";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
variant: StringConstructor;
|
|
4
|
+
}>, () => VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
5
|
+
[key: string]: any;
|
|
6
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
variant: StringConstructor;
|
|
8
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
dock?: "top" | "bottom" | "left" | "right" | "fill";
|
|
3
|
+
variant?: string;
|
|
4
|
+
};
|
|
5
|
+
declare var __VLS_1: {};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
default?: (props: typeof __VLS_1) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
11
|
+
export default _default;
|
|
12
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
13
|
+
new (): {
|
|
14
|
+
$slots: S;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
variant?: string;
|
|
3
|
+
as?: string;
|
|
4
|
+
width?: string;
|
|
5
|
+
height?: string;
|
|
6
|
+
padding?: string | number;
|
|
7
|
+
};
|
|
8
|
+
declare var __VLS_6: {};
|
|
9
|
+
type __VLS_Slots = {} & {
|
|
10
|
+
default?: (props: typeof __VLS_6) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
+
as: string;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
variant?: string;
|
|
3
|
+
as?: string;
|
|
4
|
+
width?: string;
|
|
5
|
+
height?: string;
|
|
6
|
+
padding?: string | number;
|
|
7
|
+
};
|
|
8
|
+
declare var __VLS_6: {};
|
|
9
|
+
type __VLS_Slots = {} & {
|
|
10
|
+
default?: (props: typeof __VLS_6) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
+
as: string;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
cols?: number;
|
|
3
|
+
smCols?: number;
|
|
4
|
+
mdCols?: number;
|
|
5
|
+
lgCols?: number;
|
|
6
|
+
variant?: string;
|
|
7
|
+
as?: string;
|
|
8
|
+
gap?: string | number;
|
|
9
|
+
padding?: string | number;
|
|
10
|
+
align?: 'start' | 'center' | 'end' | 'stretch' | 'baseline';
|
|
11
|
+
justify?: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';
|
|
12
|
+
};
|
|
13
|
+
declare var __VLS_6: {};
|
|
14
|
+
type __VLS_Slots = {} & {
|
|
15
|
+
default?: (props: typeof __VLS_6) => any;
|
|
16
|
+
};
|
|
17
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
18
|
+
as: string;
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
23
|
+
new (): {
|
|
24
|
+
$slots: S;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
variant?: string;
|
|
3
|
+
};
|
|
4
|
+
declare var __VLS_1: {};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
default?: (props: typeof __VLS_1) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
12
|
+
new (): {
|
|
13
|
+
$slots: S;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
variant?: string;
|
|
3
|
+
};
|
|
4
|
+
declare var __VLS_1: {};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
default?: (props: typeof __VLS_1) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
12
|
+
new (): {
|
|
13
|
+
$slots: S;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
direction?: "horizontal" | "vertical";
|
|
3
|
+
variant?: string;
|
|
4
|
+
};
|
|
5
|
+
declare var __VLS_1: {};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
default?: (props: typeof __VLS_1) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
11
|
+
export default _default;
|
|
12
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
13
|
+
new (): {
|
|
14
|
+
$slots: S;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
minSize?: number;
|
|
3
|
+
maxSize?: number;
|
|
4
|
+
defaultSize?: number;
|
|
5
|
+
variant?: string;
|
|
6
|
+
};
|
|
7
|
+
declare var __VLS_1: {};
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
9
|
+
default?: (props: typeof __VLS_1) => any;
|
|
10
|
+
};
|
|
11
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
15
|
+
new (): {
|
|
16
|
+
$slots: S;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
variant?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
direction?: "vertical" | "horizontal";
|
|
3
|
+
variant?: string;
|
|
4
|
+
as?: string;
|
|
5
|
+
gap?: string | number;
|
|
6
|
+
padding?: string | number;
|
|
7
|
+
align?: 'start' | 'center' | 'end' | 'stretch' | 'baseline';
|
|
8
|
+
justify?: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';
|
|
9
|
+
};
|
|
10
|
+
declare var __VLS_6: {};
|
|
11
|
+
type __VLS_Slots = {} & {
|
|
12
|
+
default?: (props: typeof __VLS_6) => any;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
15
|
+
as: string;
|
|
16
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -9,17 +9,4 @@ import LuScroll from "./LuScroll.vue";
|
|
|
9
9
|
import LuFill from "./LuFill.vue";
|
|
10
10
|
import LuFixed from "./LuFixed.vue";
|
|
11
11
|
import LuOverlay from "./LuOverlay.vue";
|
|
12
|
-
|
|
13
|
-
export {
|
|
14
|
-
LuStack,
|
|
15
|
-
LuGrid,
|
|
16
|
-
LuDock,
|
|
17
|
-
LuDockItem,
|
|
18
|
-
LuSplit,
|
|
19
|
-
LuSplitPane,
|
|
20
|
-
LuSplitResizer,
|
|
21
|
-
LuScroll,
|
|
22
|
-
LuFill,
|
|
23
|
-
LuFixed,
|
|
24
|
-
LuOverlay,
|
|
25
|
-
};
|
|
12
|
+
export { LuStack, LuGrid, LuDock, LuDockItem, LuSplit, LuSplitPane, LuSplitResizer, LuScroll, LuFill, LuFixed, LuOverlay, };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { _ as u, a as L, b as e, c as i, d as l, e as r, f as t, g as c, h as o, i as S, j as p } from "../LuOverlay.vue_vue_type_script_setup_true_lang-DZch4Vrw.js";
|
|
2
|
+
export {
|
|
3
|
+
u as LuDock,
|
|
4
|
+
L as LuDockItem,
|
|
5
|
+
e as LuFill,
|
|
6
|
+
i as LuFixed,
|
|
7
|
+
l as LuGrid,
|
|
8
|
+
r as LuOverlay,
|
|
9
|
+
t as LuScroll,
|
|
10
|
+
c as LuSplit,
|
|
11
|
+
o as LuSplitPane,
|
|
12
|
+
S as LuSplitResizer,
|
|
13
|
+
p as LuStack
|
|
14
|
+
};
|
package/dist/plugin.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
variant?: string;
|
|
3
|
+
expanded?: boolean;
|
|
4
|
+
expandOnHover?: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare var __VLS_1: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_1) => any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
variant?: string;
|
|
3
|
+
active?: boolean;
|
|
4
|
+
};
|
|
5
|
+
declare var __VLS_1: {}, __VLS_3: {};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
icon?: (props: typeof __VLS_1) => any;
|
|
8
|
+
} & {
|
|
9
|
+
default?: (props: typeof __VLS_3) => any;
|
|
10
|
+
};
|
|
11
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
15
|
+
new (): {
|
|
16
|
+
$slots: S;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
variant?: string;
|
|
3
|
+
};
|
|
4
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {}, __VLS_9: {};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
topbar?: (props: typeof __VLS_1) => any;
|
|
7
|
+
} & {
|
|
8
|
+
rail?: (props: typeof __VLS_3) => any;
|
|
9
|
+
} & {
|
|
10
|
+
sidebar?: (props: typeof __VLS_5) => any;
|
|
11
|
+
} & {
|
|
12
|
+
content?: (props: typeof __VLS_7) => any;
|
|
13
|
+
} & {
|
|
14
|
+
statusbar?: (props: typeof __VLS_9) => any;
|
|
15
|
+
};
|
|
16
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
variant?: string;
|
|
3
|
+
};
|
|
4
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
header?: (props: typeof __VLS_1) => any;
|
|
7
|
+
} & {
|
|
8
|
+
content?: (props: typeof __VLS_3) => any;
|
|
9
|
+
} & {
|
|
10
|
+
footer?: (props: typeof __VLS_5) => any;
|
|
11
|
+
} & {
|
|
12
|
+
default?: (props: typeof __VLS_7) => any;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|