sprintify-ui 0.6.1 → 0.6.3

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.
@@ -44284,7 +44284,7 @@ const V5 = /* @__PURE__ */ Zn(U5, [["__scopeId", "data-v-ee03d0ec"]]), W5 = { cl
44284
44284
  },
44285
44285
  setup(n) {
44286
44286
  const t = n, e = F(() => $n(
44287
- "sticky top-0 z-20 w-full shadow-sm",
44287
+ "sticky top-0 z-20 w-full shadow-sm || print:hidden",
44288
44288
  t.class
44289
44289
  )), r = Tb(), i = F(() => r.systemAlerts);
44290
44290
  return (o, a) => (P(), G(Qe, null, [
@@ -44662,7 +44662,7 @@ const V5 = /* @__PURE__ */ Zn(U5, [["__scopeId", "data-v-ee03d0ec"]]), W5 = { cl
44662
44662
  }, PB = /* @__PURE__ */ B("div", {
44663
44663
  class: "flex-shrink-0 w-14",
44664
44664
  "aria-hidden": "true"
44665
- }, null, -1), BB = { class: "flex flex-col min-h-full xl:pl-64" }, LB = { class: "sticky top-0 left-0 z-10 shadow shrink-0" }, jB = /* @__PURE__ */ B("span", { class: "sr-only" }, "Open sidebar", -1), $B = { class: "flex flex-1" }, FB = { class: "relative flex-1 min-h-full" }, zB = { class: "z-10 hidden xl:fixed xl:inset-y-0 xl:flex xl:w-64 xl:flex-col" }, HB = ["src", "alt"], qB = { class: "flex flex-1" }, UB = { class: "flex-1" }, Rb = /* @__PURE__ */ Se({
44665
+ }, null, -1), BB = { class: "flex flex-col min-h-full || xl:pl-64 || xl:print:pl-0" }, LB = { class: "sticky top-0 left-0 z-10 shadow shrink-0 || print:hidden" }, jB = /* @__PURE__ */ B("span", { class: "sr-only" }, "Open sidebar", -1), $B = { class: "flex flex-1" }, FB = { class: "relative flex-1 min-h-full" }, zB = { class: "z-10 hidden || xl:fixed xl:inset-y-0 xl:flex xl:w-64 xl:flex-col || xl:print:hidden" }, HB = ["src", "alt"], qB = { class: "flex flex-1" }, UB = { class: "flex-1" }, Rb = /* @__PURE__ */ Se({
44666
44666
  __name: "BaseLayoutSidebar",
44667
44667
  props: {
44668
44668
  appName: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.6.1",
3
+ "version": "0.6.3",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -48,8 +48,7 @@
48
48
  "@fullcalendar/vue3": "^6.1.8",
49
49
  "@headlessui/vue": "^1.7.12",
50
50
  "color2k": "^2.0.2",
51
- "tailwind-merge": "^1.12.0",
52
- "vue-tippy": "^6.3.1"
51
+ "tailwind-merge": "^1.12.0"
53
52
  },
54
53
  "devDependencies": {
55
54
  "@babel/core": "^7.20.12",
@@ -86,8 +86,8 @@
86
86
  </Dialog>
87
87
  </TransitionRoot>
88
88
 
89
- <div class="flex flex-col min-h-full xl:pl-64">
90
- <div class="sticky top-0 left-0 z-10 shadow shrink-0">
89
+ <div class="flex flex-col min-h-full || xl:pl-64 || xl:print:pl-0">
90
+ <div class="sticky top-0 left-0 z-10 shadow shrink-0 || print:hidden">
91
91
  <BaseSystemAlert
92
92
  v-for="systemAlert in systemAlerts"
93
93
  :key="systemAlert.id"
@@ -131,7 +131,7 @@
131
131
  </div>
132
132
 
133
133
  <!-- Static sidebar for desktop -->
134
- <div class="z-10 hidden xl:fixed xl:inset-y-0 xl:flex xl:w-64 xl:flex-col">
134
+ <div class="z-10 hidden || xl:fixed xl:inset-y-0 xl:flex xl:w-64 xl:flex-col || xl:print:hidden">
135
135
  <!-- Sidebar component, swap this element with another sidebar if you like -->
136
136
  <div
137
137
  data-scroll-lock-scrollable
@@ -61,7 +61,7 @@ const props = withDefaults(defineProps<{
61
61
 
62
62
  const classInternal = computed(() => {
63
63
  return twMerge(
64
- 'sticky top-0 z-20 w-full shadow-sm',
64
+ 'sticky top-0 z-20 w-full shadow-sm || print:hidden',
65
65
  props.class,
66
66
  )
67
67
  })