@eslamdevui/ui 3.2.1 → 3.2.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eslamdevui/ui",
3
- "version": "3.2.1",
3
+ "version": "3.2.2",
4
4
  "docs": "https://ui.nuxt.com/getting-started/installation/nuxt",
5
5
  "configKey": "ui",
6
6
  "compatibility": {
package/dist/module.mjs CHANGED
@@ -8,7 +8,7 @@ import 'tailwindcss/colors';
8
8
  import 'knitwork';
9
9
 
10
10
  const name = "@eslamdevui/ui";
11
- const version = "3.2.1";
11
+ const version = "3.2.2";
12
12
 
13
13
  const module = defineNuxtModule({
14
14
  meta: {
@@ -12,8 +12,8 @@ const props = defineProps({
12
12
  pauseOnHover: { type: Boolean, required: false },
13
13
  reverse: { type: Boolean, required: false },
14
14
  orientation: { type: null, required: false, default: "horizontal" },
15
- repeat: { type: Number, required: false },
16
- overlay: { type: Boolean, required: false },
15
+ repeat: { type: Number, required: false, default: 4 },
16
+ overlay: { type: Boolean, required: false, default: true },
17
17
  class: { type: null, required: false },
18
18
  ui: { type: null, required: false }
19
19
  });
@@ -28,7 +28,7 @@ const ui = computed(() => tv({ extend: tv(theme), ...appConfig.ui?.pageMarquee |
28
28
  </script>
29
29
 
30
30
  <template>
31
- <Primitive :as="as" :class="ui.root({ class: [props.ui?.root, props.class] })">
31
+ <Primitive :as="props.as" :class="ui.root({ class: [props.ui?.root, props.class] })">
32
32
  <div v-for="i in repeat" :key="i" :class="ui.content({ class: [props.ui?.content] })">
33
33
  <slot />
34
34
  </div>
@@ -20,7 +20,9 @@ export interface PageMarqueeSlots {
20
20
  default(props?: {}): any;
21
21
  }
22
22
  declare const _default: __VLS_WithSlots<import("vue").DefineComponent<PageMarqueeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PageMarqueeProps> & Readonly<{}>, {
23
+ repeat: number;
23
24
  orientation: PageMarquee["variants"]["orientation"];
25
+ overlay: boolean;
24
26
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, PageMarqueeSlots>;
25
27
  export default _default;
26
28
  type __VLS_WithSlots<T, S> = T & {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eslamdevui/ui",
3
3
  "description": "A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.",
4
- "version": "3.2.1",
4
+ "version": "3.2.2",
5
5
  "packageManager": "pnpm@10.12.2",
6
6
  "repository": {
7
7
  "type": "git",