@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
- start?(): VNode;
10
- end?(): VNode;
9
+ after?(): VNode[];
10
+ before?(): VNode[];
11
+ end?(): VNode[];
12
+ start?(): VNode[];
11
13
  }> & {
12
- start?(): VNode;
13
- end?(): VNode;
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
@@ -81,7 +81,7 @@
81
81
  margin-left: auto;
82
82
  margin-right: auto;
83
83
  padding-top: 21px;
84
- padding-bottom: 21px;
84
+ padding-bottom: 42px;
85
85
  flex-flow: column;
86
86
  flex-grow: 1;
87
87
  gap: 21px;
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) }, [createElementVNode("h1", null, toDisplayString(__props.title), 1), __props.subtitle ? (openBlock(), createElementBlock("p", {
3882
- key: 0,
3883
- class: normalizeClass(unref(ApplicationHero_module_default).applicationHeroSubtitle)
3884
- }, toDisplayString(__props.subtitle), 3)) : createCommentVNode("", true)], 2),
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
  };