adata-ui 4.0.31 → 4.0.32

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": "4.0.31",
8
+ "version": "4.0.32",
9
9
  "builder": {
10
10
  "@nuxt/module-builder": "1.0.1",
11
11
  "unbuild": "3.5.0"
@@ -17,8 +17,11 @@ const emit = defineEmits(["goToAnotherModule", "search"]);
17
17
  >
18
18
  <div
19
19
  v-if="mobileHeaderType === 'default'"
20
- class="flex justify-center"
20
+ class="flex justify-between"
21
21
  >
22
+ <div>
23
+ <slot name="burger"></slot>
24
+ </div>
22
25
  <nuxt-link
23
26
  class="text-deepblue dark:text-[#E3E5E8]"
24
27
  @click="emit('goToAnotherModule')"
@@ -28,6 +31,9 @@ const emit = defineEmits(["goToAnotherModule", "search"]);
28
31
  filled
29
32
  />
30
33
  </nuxt-link>
34
+ <div>
35
+
36
+ </div>
31
37
  </div>
32
38
  <div
33
39
  v-else-if="mobileHeaderType === 'search'"
@@ -46,10 +52,4 @@ const emit = defineEmits(["goToAnotherModule", "search"]);
46
52
  </button>
47
53
  </div>
48
54
  </section>
49
- <div class="lg:hidden">
50
- <div
51
- v-if="langIsOn || module === 'fea'"
52
- class="lg:hidden"
53
- />
54
- </div>
55
55
  </template>
@@ -3,5 +3,15 @@ type __VLS_Props = {
3
3
  langIsOn: boolean;
4
4
  module: string;
5
5
  };
6
- declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare var __VLS_1: {};
7
+ type __VLS_Slots = {} & {
8
+ burger?: (props: typeof __VLS_1) => any;
9
+ };
10
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
7
12
  export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "4.0.31",
3
+ "version": "4.0.32",
4
4
  "description": "Adata UI",
5
5
  "repository": "your-org/my-module",
6
6
  "license": "MIT",