@flux-ui/application 3.0.0-next.39 → 3.0.0-next.40
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.
|
@@ -6,11 +6,15 @@ type __VLS_Props = {
|
|
|
6
6
|
declare function __VLS_template(): {
|
|
7
7
|
attrs: Partial<{}>;
|
|
8
8
|
slots: Readonly<{
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
after?(): VNode[];
|
|
10
|
+
before?(): VNode[];
|
|
11
|
+
end?(): VNode[];
|
|
12
|
+
start?(): VNode[];
|
|
11
13
|
}> & {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
+
after?(): VNode[];
|
|
15
|
+
before?(): VNode[];
|
|
16
|
+
end?(): VNode[];
|
|
17
|
+
start?(): VNode[];
|
|
14
18
|
};
|
|
15
19
|
refs: {};
|
|
16
20
|
rootEl: HTMLElement;
|
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -3878,10 +3878,15 @@ var FluxApplicationHero_default = /* @__PURE__ */ defineComponent({
|
|
|
3878
3878
|
return (_ctx, _cache) => {
|
|
3879
3879
|
return openBlock(), createElementBlock("header", { class: normalizeClass(unref(ApplicationHero_module_default).applicationHero) }, [
|
|
3880
3880
|
renderSlot(_ctx.$slots, "start"),
|
|
3881
|
-
createElementVNode("div", { class: normalizeClass(unref(ApplicationHero_module_default).applicationHeroBody) }, [
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3881
|
+
createElementVNode("div", { class: normalizeClass(unref(ApplicationHero_module_default).applicationHeroBody) }, [
|
|
3882
|
+
renderSlot(_ctx.$slots, "before"),
|
|
3883
|
+
createElementVNode("h1", null, toDisplayString(__props.title), 1),
|
|
3884
|
+
__props.subtitle ? (openBlock(), createElementBlock("p", {
|
|
3885
|
+
key: 0,
|
|
3886
|
+
class: normalizeClass(unref(ApplicationHero_module_default).applicationHeroSubtitle)
|
|
3887
|
+
}, toDisplayString(__props.subtitle), 3)) : createCommentVNode("", true),
|
|
3888
|
+
renderSlot(_ctx.$slots, "after")
|
|
3889
|
+
], 2),
|
|
3885
3890
|
renderSlot(_ctx.$slots, "end")
|
|
3886
3891
|
], 2);
|
|
3887
3892
|
};
|