v-nuxt-ui 0.1.25 → 0.1.26

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
@@ -7,7 +7,7 @@
7
7
  "dependencies": [
8
8
  "@nuxt/ui"
9
9
  ],
10
- "version": "0.1.25",
10
+ "version": "0.1.26",
11
11
  "builder": {
12
12
  "@nuxt/module-builder": "1.0.2",
13
13
  "unbuild": "3.6.1"
@@ -12,7 +12,7 @@ const props = defineProps({
12
12
  loading: { type: Boolean, required: false },
13
13
  range: { type: Boolean, required: false },
14
14
  placeholder: { type: String, required: false },
15
- timeUnit: { type: String, required: false },
15
+ timeUnit: { type: null, required: false },
16
16
  leadingIcon: { type: null, required: false },
17
17
  shortcuts: { type: Array, required: false },
18
18
  peerButtons: { type: Array, required: false }
@@ -5,4 +5,3 @@ export declare const weekEnLabels: string[];
5
5
  export declare const weekCnLabels: string[];
6
6
  export declare const dateFormat = "YYYY-MM-DD";
7
7
  export declare const dateTimeFormat = "YYYY-MM-DD HH:mm:ss";
8
- export type TimeUnit = 'day' | 'week' | 'month' | 'quarter' | 'year';
@@ -7,6 +7,7 @@ export * from './locale.js';
7
7
  export * from './request.js';
8
8
  export * from './query.js';
9
9
  export * from './storage.js';
10
+ export * from './time.js';
10
11
  export type Size = import('@nuxt/ui').ButtonProps['size'];
11
12
  export type SelectOption = {
12
13
  label: string;
@@ -6,3 +6,4 @@ export * from "./locale.js";
6
6
  export * from "./request.js";
7
7
  export * from "./query.js";
8
8
  export * from "./storage.js";
9
+ export * from "./time.js";
@@ -0,0 +1 @@
1
+ export type TimeUnit = 'day' | 'week' | 'month' | 'quarter' | 'year';
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "v-nuxt-ui",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "description": "Veken UI Component Library - Reusable Nuxt UI components, composables, and utilities for enterprise applications",
5
5
  "type": "module",
6
6
  "style": "./dist/runtime/index.css",