ketekny-ui-kit 1.0.108 → 1.0.109
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/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<main class="flex min-h-
|
|
2
|
+
<main class="flex min-h-0 w-full max-w-none flex-1 flex-col overflow-y-auto bg-slate-100">
|
|
3
3
|
<div
|
|
4
4
|
v-if="showHeaderExtraBeforeTitle"
|
|
5
5
|
class="sticky z-30 border-b border-t border-slate-200 bg-slate-50 px-4 backdrop-blur sm:px-6 lg:px-8"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<main class="flex h-
|
|
2
|
+
<main class="flex min-h-0 w-full max-w-none flex-1 flex-col overflow-hidden bg-slate-100">
|
|
3
3
|
<section
|
|
4
4
|
v-if="hasTopSection"
|
|
5
5
|
class="shrink-0 bg-white px-4 pb-4 pb-0 pt-8 sm:px-6 lg:px-8"
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
</div>
|
|
44
44
|
</div>
|
|
45
45
|
|
|
46
|
-
<div class="min-h-0 flex-1 overflow-hidden bg-slate-100 py-4">
|
|
47
|
-
<div class="mx-auto flex
|
|
46
|
+
<div class="flex min-h-0 flex-1 flex-col overflow-hidden bg-slate-100 py-4">
|
|
47
|
+
<div class="mx-auto flex min-h-0 w-full max-w-none flex-1 gap-2">
|
|
48
48
|
<aside class="ml-8 min-h-0 shrink-0 overflow-y-auto pr-4" :style="sidebarStyle">
|
|
49
49
|
<slot name="sidebar" />
|
|
50
50
|
</aside>
|
|
@@ -26,14 +26,16 @@
|
|
|
26
26
|
</template>
|
|
27
27
|
</MultilevelSidebar>
|
|
28
28
|
|
|
29
|
-
<main class="flex min-h-0 flex-1 flex-col overflow-
|
|
29
|
+
<main class="flex min-h-0 flex-1 flex-col overflow-hidden">
|
|
30
30
|
<div
|
|
31
31
|
v-if="$slots.header"
|
|
32
32
|
class="sticky top-0 z-20 shrink-0"
|
|
33
33
|
>
|
|
34
34
|
<slot name="header" />
|
|
35
35
|
</div>
|
|
36
|
-
<
|
|
36
|
+
<div class="flex min-h-0 flex-1 flex-col overflow-hidden">
|
|
37
|
+
<slot />
|
|
38
|
+
</div>
|
|
37
39
|
</main>
|
|
38
40
|
|
|
39
41
|
<button
|