@opentiny/vue-calendar
Advanced tools
Comparing version 2.8.2 to 2.8.3
{ | ||
"name": "@opentiny/vue-calendar", | ||
"version": "2.8.2", | ||
"version": "2.8.3", | ||
"description": "", | ||
"main": "./lib/index.js", | ||
"module": "./lib/index.js", | ||
"sideEffects": false, | ||
"dependencies": { | ||
"@opentiny/vue-common": "~2.8.2", | ||
"@opentiny/vue-icon": "~2.8.2", | ||
"@opentiny/vue-renderless": "~3.8.2", | ||
"@opentiny/vue-tooltip": "~2.8.2", | ||
"@opentiny/vue-popover": "~2.8.2" | ||
"@opentiny/vue-common": "~2.8.3", | ||
"@opentiny/vue-icon": "~2.8.3", | ||
"@opentiny/vue-renderless": "~3.8.3", | ||
"@opentiny/vue-tooltip": "~2.8.3", | ||
"@opentiny/vue-popover": "~2.8.3" | ||
}, | ||
@@ -14,0 +15,0 @@ "license": "MIT", |
@@ -1,2 +0,86 @@ | ||
declare const _default: any; | ||
declare const _default: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api/dist/vue-composition-api.js").ShallowUnwrapRef<() => import("vue").VNode> & import("@vue/composition-api/dist/vue-composition-api.js").Data, {}, {}, { | ||
/** | ||
* @property {String} [mode='month'] - 显示模式,month|year 可选 | ||
*/ | ||
mode: { | ||
type: StringConstructor; | ||
default: string; | ||
validator: (value: string) => boolean; | ||
}; | ||
/** | ||
* @property {Number} [year=getFullYear()] - 指定年份,默认今年 | ||
*/ | ||
year: { | ||
type: NumberConstructor; | ||
default(): number; | ||
}; | ||
/** | ||
* @property {Number} [month=getMonth()] - 指定月份,默认当月 | ||
*/ | ||
month: { | ||
type: NumberConstructor; | ||
default(): number; | ||
}; | ||
/** | ||
* @property {Array} events - 事件列表 | ||
* @example | ||
* [{ time: 1534297845236, title: '消息', content: '这是一条消息', type: 'primary' }, | ||
* { time: 1534297845236, title: '消息', content: '还有', type: 'info' }] | ||
* type 类型: warning、error、info、success | ||
*/ | ||
events: ArrayConstructor; | ||
/** | ||
* @property {Boolean} [showSelected=false] - 显示选中的日期 | ||
*/ | ||
showSelected: BooleanConstructor; | ||
tiny_mode: StringConstructor; | ||
tiny_mode_root: BooleanConstructor; | ||
tiny_template: (ObjectConstructor | FunctionConstructor)[]; | ||
tiny_renderless: FunctionConstructor; | ||
tiny_theme: StringConstructor; | ||
tiny_chart_theme: ObjectConstructor; | ||
}, { | ||
tiny_mode_root: boolean; | ||
month: number; | ||
showSelected: boolean; | ||
mode: string; | ||
year: number; | ||
} & { | ||
tiny_mode?: string | undefined; | ||
tiny_template?: unknown; | ||
tiny_renderless?: Function | undefined; | ||
tiny_theme?: string | undefined; | ||
tiny_chart_theme?: Record<string, any> | undefined; | ||
events?: unknown[] | undefined; | ||
}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api/dist/vue-composition-api.js").ComponentRenderProxy<{ | ||
tiny_mode_root: boolean; | ||
month: number; | ||
showSelected: boolean; | ||
mode: string; | ||
year: number; | ||
} & { | ||
tiny_mode?: string | undefined; | ||
tiny_template?: unknown; | ||
tiny_renderless?: Function | undefined; | ||
tiny_theme?: string | undefined; | ||
tiny_chart_theme?: Record<string, any> | undefined; | ||
events?: unknown[] | undefined; | ||
}, import("@vue/composition-api/dist/vue-composition-api.js").ShallowUnwrapRef<() => import("vue").VNode>, import("@vue/composition-api/dist/vue-composition-api.js").Data, {}, {}, { | ||
tiny_mode_root: boolean; | ||
month: number; | ||
showSelected: boolean; | ||
mode: string; | ||
year: number; | ||
} & { | ||
tiny_mode?: string | undefined; | ||
tiny_template?: unknown; | ||
tiny_renderless?: Function | undefined; | ||
tiny_theme?: string | undefined; | ||
tiny_chart_theme?: Record<string, any> | undefined; | ||
events?: unknown[] | undefined; | ||
}, { | ||
month: number; | ||
mode: string; | ||
year: number; | ||
}, true>); | ||
export default _default; |
@@ -1,2 +0,30 @@ | ||
declare const _sfc_main: any; | ||
declare const _sfc_main: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api/dist/vue-composition-api.js").ShallowUnwrapRef<{ | ||
t: (this: any, path: any, options?: any) => any; | ||
vm: any; | ||
f: (props: any, attrs?: {}) => {}; | ||
a: (attrs: any, filters: any, include: any) => {}; | ||
d: (props: any) => void; | ||
dp: (props: any) => void; | ||
gcls: (key: any) => any; | ||
m: (...cssClasses: any[]) => string; | ||
}> & import("@vue/composition-api/dist/vue-composition-api.js").Data, {}, {}, Readonly<{ | ||
[x: string]: any; | ||
}>, { | ||
[x: string]: any; | ||
} & {}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api/dist/vue-composition-api.js").ComponentRenderProxy<{ | ||
[x: string]: any; | ||
} & {}, import("@vue/composition-api/dist/vue-composition-api.js").ShallowUnwrapRef<{ | ||
t: (this: any, path: any, options?: any) => any; | ||
vm: any; | ||
f: (props: any, attrs?: {}) => {}; | ||
a: (attrs: any, filters: any, include: any) => {}; | ||
d: (props: any) => void; | ||
dp: (props: any) => void; | ||
gcls: (key: any) => any; | ||
m: (...cssClasses: any[]) => string; | ||
}>, import("@vue/composition-api/dist/vue-composition-api.js").Data, {}, {}, { | ||
[x: string]: any; | ||
} & {}, { | ||
[x: string]: any; | ||
}, true>); | ||
export default _sfc_main; |
AI-detected possible typosquat
Supply chain riskAI has identified this package as a potential typosquat of a more popular package. This suggests that the package may be intentionally mimicking another package's name, description, or other metadata.
Found 1 instance in 1 package
23777
642
1
Updated@opentiny/vue-common@~2.8.3
Updated@opentiny/vue-icon@~2.8.3
Updated@opentiny/vue-popover@~2.8.3
Updated@opentiny/vue-tooltip@~2.8.3