sprintify-ui 0.12.8 → 0.12.10

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.
@@ -26393,13 +26393,13 @@ const qI = ["onClick"], UI = ["onClick"], KI = { class: "px-1 py-1 h-full flex i
26393
26393
  type: Boolean
26394
26394
  }
26395
26395
  }
26396
- }), e3 = { class: "md:col-span-1" }, t3 = { class: "text-base font-semibold leading-6 text-slate-900" }, n3 = {
26396
+ }), e3 = { class: "md:col-span-1" }, t3 = { class: "text-base font-semibold leading-6 text-slate-900 base-panel-title" }, n3 = {
26397
26397
  key: 0,
26398
- class: "mt-1 text-sm leading-normal opacity-50"
26398
+ class: "mt-1 text-sm leading-normal opacity-50 base-panel-description"
26399
26399
  }, r3 = { class: "mt-5 md:col-span-2 md:mt-0" };
26400
26400
  function o3(n, t, e, r, o, i) {
26401
26401
  return k(), $("div", {
26402
- class: j(["md:grid md:grid-cols-3 md:gap-8", [n.bordered ? "mb-8 pb-8 border-b border-slate-300" : ""]])
26402
+ class: j(["base-panel md:grid md:grid-cols-3 md:gap-8", [n.bordered ? "mb-8 pb-8 border-b border-slate-300" : ""]])
26403
26403
  }, [
26404
26404
  A("div", e3, [
26405
26405
  A("h3", t3, ie(n.title), 1),
@@ -46633,7 +46633,7 @@ const g4 = /* @__PURE__ */ Zi(a4, [["render", m4]]), v4 = { class: "flex-shrink-
46633
46633
  }, 8, ["size", "dark", "navbar"]);
46634
46634
  };
46635
46635
  }
46636
- }), jP = { class: "min-h-full" }, HP = { class: "fixed inset-0 z-40 flex" }, WP = { class: "absolute top-0 right-0 pt-2 -mr-12" }, qP = ["src", "alt"], UP = {
46636
+ }), jP = { class: "min-h-full base-layout-sidebar" }, HP = { class: "fixed inset-0 z-40 flex" }, WP = { class: "absolute top-0 right-0 pt-2 -mr-12" }, qP = ["src", "alt"], UP = {
46637
46637
  "data-scroll-lock-scrollable": "",
46638
46638
  class: "flex-1 h-0 mt-5 overflow-y-auto"
46639
46639
  }, KP = { class: "sticky top-0 left-0 z-10 shadow shrink-0 || print:hidden" }, YP = { class: "flex flex-1" }, GP = { class: "relative flex-1 min-h-full" }, JP = ["src", "alt"], XP = { class: "flex flex-1" }, QP = { class: "flex-1" }, ZP = "base_layout_sidebar.", H1 = /* @__PURE__ */ re({
@@ -46803,7 +46803,7 @@ const g4 = /* @__PURE__ */ Zi(a4, [["render", m4]]), v4 = { class: "flex-shrink-
46803
46803
  _: 2
46804
46804
  }, 1032, ["color", "to", "action", "closable", "onClose"]))), 128)),
46805
46805
  A("div", {
46806
- class: "flex bg-white",
46806
+ class: "flex bg-white base-layout-sidebar-navbar",
46807
46807
  style: Fe({ height: g(f) + "px" })
46808
46808
  }, [
46809
46809
  A("button", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.12.8",
3
+ "version": "0.12.10",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "generate-llm-txt": "node scripts/generate-llm-txt.js",
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="min-h-full">
2
+ <div class="min-h-full base-layout-sidebar">
3
3
  <TransitionRoot
4
4
  as="template"
5
5
  :show="showMobileMenu"
@@ -109,7 +109,7 @@
109
109
  </BaseSystemAlert>
110
110
 
111
111
  <div
112
- class="flex bg-white"
112
+ class="flex bg-white base-layout-sidebar-navbar"
113
113
  :style="{ height: navbarHeight + 'px' }"
114
114
  >
115
115
  <button
@@ -1,15 +1,15 @@
1
1
  <template>
2
2
  <div
3
- class="md:grid md:grid-cols-3 md:gap-8"
3
+ class="base-panel md:grid md:grid-cols-3 md:gap-8"
4
4
  :class="[bordered ? 'mb-8 pb-8 border-b border-slate-300' : '']"
5
5
  >
6
6
  <div class="md:col-span-1">
7
- <h3 class="text-base font-semibold leading-6 text-slate-900">
7
+ <h3 class="text-base font-semibold leading-6 text-slate-900 base-panel-title">
8
8
  {{ title }}
9
9
  </h3>
10
10
  <p
11
11
  v-if="description"
12
- class="mt-1 text-sm leading-normal opacity-50"
12
+ class="mt-1 text-sm leading-normal opacity-50 base-panel-description"
13
13
  >
14
14
  {{ description }}
15
15
  </p>