adata-ui 3.1.67 → 3.1.68

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/dist/module.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "nuxt": ">=3.16.0"
6
6
  },
7
7
  "failOnWarn": false,
8
- "version": "3.1.67",
8
+ "version": "3.1.68",
9
9
  "builder": {
10
10
  "@nuxt/module-builder": "1.0.1",
11
11
  "unbuild": "3.5.0"
@@ -1,19 +1,9 @@
1
1
  <script setup>
2
2
  import { DrawerRoot, DrawerPortal, DrawerOverlay, DrawerContent, DrawerHandle } from "vaul-vue";
3
- import { DialogContent } from "reka-ui";
4
- import { computed } from "#imports";
5
3
  const props = defineProps({
6
- side: { type: String, required: false, default: "bottom" },
7
- width: { type: Number, required: false, default: 300 },
8
- height: { type: Number, required: false, default: 300 }
4
+ side: { type: String, required: false, default: "bottom" }
9
5
  });
10
6
  const open = defineModel({ type: Boolean, ...{ default: false } });
11
- const sizeStyle = computed(() => {
12
- if (["left", "right"].includes(props.side)) {
13
- return { width: `${props.width}px`, height: "100%" };
14
- }
15
- return { width: "100%", height: `${props.height}px` };
16
- });
17
7
  const POSITION_CLASSES = {
18
8
  right: "top-0 bottom-0 right-0",
19
9
  left: "top-0 bottom-0 left-0",
@@ -32,6 +22,12 @@ const HANDLE_POSITION_CLASSES = {
32
22
  left: "absolute top-1/2 -translate-y-1/2 rotate-90 !mr-0",
33
23
  right: "absolute top-1/2 -translate-y-1/2 rotate-90 !ml-0"
34
24
  };
25
+ const MAX_SIZE_CLASSES = {
26
+ top: "sm:max-h-[calc(100vh-48px)] max-h-full",
27
+ bottom: "sm:max-h-[calc(100vh-48px)] max-h-full",
28
+ left: "sm:max-w-[calc(100vw-48px)] max-w-full",
29
+ right: "sm:max-w-[calc(100vw-48px)] max-w-full"
30
+ };
35
31
  </script>
36
32
 
37
33
  <template>
@@ -43,11 +39,11 @@ const HANDLE_POSITION_CLASSES = {
43
39
  <drawer-overlay class="fixed inset-0 bg-black/50" />
44
40
 
45
41
  <drawer-content
46
- :style="sizeStyle"
47
42
  :class="[
48
- 'fixed bg-white dark:bg-gray-900 shadow-2xl',
43
+ 'fixed bg-white dark:bg-gray-900 shadow-2xl flex flex-col',
49
44
  POSITION_CLASSES[props.side],
50
- CORNER_CLASSES[props.side]
45
+ CORNER_CLASSES[props.side],
46
+ MAX_SIZE_CLASSES[props.side]
51
47
  ]"
52
48
  >
53
49
  <drawer-handle
@@ -62,12 +58,12 @@ const HANDLE_POSITION_CLASSES = {
62
58
  >
63
59
  <slot name="header" />
64
60
  </div>
65
- <div class="p-4">
61
+ <div class="p-4 flex-1 overflow-y-auto">
66
62
  <slot name="default" />
67
63
  </div>
68
64
  <div
69
65
  v-if="$slots.footer"
70
- class="border-b border-deepblue-900/5 dark:border-gray-200/5 p-4"
66
+ class="border-t border-deepblue-900/5 dark:border-gray-200/5 p-4"
71
67
  >
72
68
  <slot name="footer" />
73
69
  </div>
@@ -1,7 +1,5 @@
1
1
  type __VLS_Props = {
2
2
  side?: 'right' | 'left' | 'top' | 'bottom';
3
- width?: number;
4
- height?: number;
5
3
  };
6
4
  type __VLS_PublicProps = __VLS_Props & {
7
5
  modelValue?: boolean;
@@ -19,8 +17,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
19
17
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
20
18
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
21
19
  }>, {
22
- width: number;
23
- height: number;
24
20
  side: "right" | "left" | "top" | "bottom";
25
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
26
22
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -68,7 +68,7 @@ const mainLinks = computed(() => ({
68
68
  },
69
69
  {
70
70
  title: "footer.work.title",
71
- link: buildLocalizedUrl(locale.value, urls.work, PAGES.work.main)
71
+ link: `https://work.${mode}.kz/`
72
72
  },
73
73
  {
74
74
  title: "footer.analytics.title",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "3.1.67",
3
+ "version": "3.1.68",
4
4
  "description": "Adata UI",
5
5
  "repository": "your-org/my-module",
6
6
  "license": "MIT",