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 +1 -1
- package/dist/runtime/components/date-picker/index.vue +1 -1
- package/dist/runtime/constants/time.d.ts +0 -1
- package/dist/runtime/types/index.d.ts +1 -0
- package/dist/runtime/types/index.js +1 -0
- package/dist/runtime/types/time.d.ts +1 -0
- package/dist/runtime/types/time.js +0 -0
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -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:
|
|
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';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type TimeUnit = 'day' | 'week' | 'month' | 'quarter' | 'year';
|
|
File without changes
|
package/package.json
CHANGED