@opentiny/vue-numeric
Advanced tools
Comparing version 2.8.0 to 2.8.2
@@ -20,8 +20,12 @@ function _extends() { | ||
var template = function template2(mode) { | ||
if ("mobile" === (process.env.TINY_MODE || mode)) | ||
if ("pc" === (process.env.TINY_MODE || mode)) { | ||
return PcTemplate; | ||
} | ||
if ("mobile" === (process.env.TINY_MODE || mode)) { | ||
return MobileTemplate; | ||
else if ("mobile-first" === (process.env.TINY_MODE || mode)) | ||
} | ||
if ("mobile-first" === (process.env.TINY_MODE || mode)) { | ||
return MobileFirstTemplate; | ||
else | ||
return PcTemplate; | ||
} | ||
return PcTemplate; | ||
}; | ||
@@ -28,0 +32,0 @@ var $constants = { |
{ | ||
"name": "@opentiny/vue-numeric", | ||
"version": "2.8.0", | ||
"version": "2.8.2", | ||
"description": "", | ||
@@ -8,5 +8,5 @@ "main": "./lib/index.js", | ||
"dependencies": { | ||
"@opentiny/vue-common": "~2.8.0", | ||
"@opentiny/vue-icon": "~2.8.0", | ||
"@opentiny/vue-renderless": "~3.8.0" | ||
"@opentiny/vue-common": "~2.8.2", | ||
"@opentiny/vue-icon": "~2.8.2", | ||
"@opentiny/vue-renderless": "~3.8.2" | ||
}, | ||
@@ -13,0 +13,0 @@ "license": "MIT", |
@@ -1,245 +0,2 @@ | ||
declare const _default: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").ShallowUnwrapRef<() => import("vue").VNode> & import("@vue/composition-api").Data, {}, {}, { | ||
_constants: { | ||
type: ObjectConstructor; | ||
default: () => { | ||
MAX: string; | ||
MIN: string; | ||
VALUENOW: string; | ||
DISABLED: string; | ||
KEY: string; | ||
VALUE: string; | ||
EVENT_NAME: { | ||
blur: string; | ||
change: string; | ||
}; | ||
COMPONENT_NAME: string; | ||
}; | ||
}; | ||
allowEmpty: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
circulate: BooleanConstructor; | ||
controls: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
controlsPosition: { | ||
type: StringConstructor; | ||
default: string; | ||
}; | ||
disabled: BooleanConstructor; | ||
format: (StringConstructor | ObjectConstructor)[]; | ||
hideUnit: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
holdZero: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
label: StringConstructor; | ||
max: { | ||
type: (StringConstructor | NumberConstructor)[]; | ||
default: number; | ||
}; | ||
min: { | ||
type: (StringConstructor | NumberConstructor)[]; | ||
default: number; | ||
}; | ||
modelTruncation: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
modelValue: {}; | ||
mouseWheel: BooleanConstructor; | ||
name: StringConstructor; | ||
placeholder: StringConstructor; | ||
plugin: FunctionConstructor; | ||
precision: { | ||
type: NumberConstructor; | ||
validator(val: unknown): boolean; | ||
}; | ||
size: StringConstructor; | ||
step: { | ||
type: (StringConstructor | NumberConstructor)[]; | ||
default: number; | ||
}; | ||
stepStrictly: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
strictInput: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
stringMode: BooleanConstructor; | ||
tabindex: { | ||
type: StringConstructor; | ||
default: string; | ||
}; | ||
theme: { | ||
type: StringConstructor; | ||
default: string; | ||
}; | ||
unit: StringConstructor; | ||
unitCenter: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
validateEvent: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
displayOnly: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
showLeft: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
tiny_mode: StringConstructor; | ||
tiny_mode_root: BooleanConstructor; | ||
tiny_template: (FunctionConstructor | ObjectConstructor)[]; | ||
tiny_renderless: FunctionConstructor; | ||
tiny_theme: StringConstructor; | ||
tiny_chart_theme: ObjectConstructor; | ||
}, { | ||
disabled: boolean; | ||
tabindex: string; | ||
tiny_mode_root: boolean; | ||
_constants: Record<string, any>; | ||
validateEvent: boolean; | ||
displayOnly: boolean; | ||
holdZero: boolean; | ||
modelTruncation: boolean; | ||
strictInput: boolean; | ||
controls: boolean; | ||
theme: string; | ||
max: string | number; | ||
min: string | number; | ||
step: string | number; | ||
circulate: boolean; | ||
mouseWheel: boolean; | ||
stringMode: boolean; | ||
allowEmpty: boolean; | ||
controlsPosition: string; | ||
hideUnit: boolean; | ||
stepStrictly: boolean; | ||
unitCenter: boolean; | ||
showLeft: boolean; | ||
} & { | ||
name?: string | undefined; | ||
modelValue?: unknown; | ||
size?: string | undefined; | ||
tiny_mode?: string | undefined; | ||
tiny_template?: unknown; | ||
tiny_renderless?: Function | undefined; | ||
tiny_theme?: string | undefined; | ||
tiny_chart_theme?: Record<string, any> | undefined; | ||
label?: string | undefined; | ||
placeholder?: string | undefined; | ||
format?: unknown; | ||
plugin?: Function | undefined; | ||
unit?: string | undefined; | ||
precision?: number | undefined; | ||
}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{ | ||
disabled: boolean; | ||
tabindex: string; | ||
tiny_mode_root: boolean; | ||
_constants: Record<string, any>; | ||
validateEvent: boolean; | ||
displayOnly: boolean; | ||
holdZero: boolean; | ||
modelTruncation: boolean; | ||
strictInput: boolean; | ||
controls: boolean; | ||
theme: string; | ||
max: string | number; | ||
min: string | number; | ||
step: string | number; | ||
circulate: boolean; | ||
mouseWheel: boolean; | ||
stringMode: boolean; | ||
allowEmpty: boolean; | ||
controlsPosition: string; | ||
hideUnit: boolean; | ||
stepStrictly: boolean; | ||
unitCenter: boolean; | ||
showLeft: boolean; | ||
} & { | ||
name?: string | undefined; | ||
modelValue?: unknown; | ||
size?: string | undefined; | ||
tiny_mode?: string | undefined; | ||
tiny_template?: unknown; | ||
tiny_renderless?: Function | undefined; | ||
tiny_theme?: string | undefined; | ||
tiny_chart_theme?: Record<string, any> | undefined; | ||
label?: string | undefined; | ||
placeholder?: string | undefined; | ||
format?: unknown; | ||
plugin?: Function | undefined; | ||
unit?: string | undefined; | ||
precision?: number | undefined; | ||
}, import("@vue/composition-api").ShallowUnwrapRef<() => import("vue").VNode>, import("@vue/composition-api").Data, {}, {}, { | ||
disabled: boolean; | ||
tabindex: string; | ||
tiny_mode_root: boolean; | ||
_constants: Record<string, any>; | ||
validateEvent: boolean; | ||
displayOnly: boolean; | ||
holdZero: boolean; | ||
modelTruncation: boolean; | ||
strictInput: boolean; | ||
controls: boolean; | ||
theme: string; | ||
max: string | number; | ||
min: string | number; | ||
step: string | number; | ||
circulate: boolean; | ||
mouseWheel: boolean; | ||
stringMode: boolean; | ||
allowEmpty: boolean; | ||
controlsPosition: string; | ||
hideUnit: boolean; | ||
stepStrictly: boolean; | ||
unitCenter: boolean; | ||
showLeft: boolean; | ||
} & { | ||
name?: string | undefined; | ||
modelValue?: unknown; | ||
size?: string | undefined; | ||
tiny_mode?: string | undefined; | ||
tiny_template?: unknown; | ||
tiny_renderless?: Function | undefined; | ||
tiny_theme?: string | undefined; | ||
tiny_chart_theme?: Record<string, any> | undefined; | ||
label?: string | undefined; | ||
placeholder?: string | undefined; | ||
format?: unknown; | ||
plugin?: Function | undefined; | ||
unit?: string | undefined; | ||
precision?: number | undefined; | ||
}, { | ||
tabindex: string; | ||
_constants: Record<string, any>; | ||
validateEvent: boolean; | ||
displayOnly: boolean; | ||
holdZero: boolean; | ||
modelTruncation: boolean; | ||
strictInput: boolean; | ||
controls: boolean; | ||
theme: string; | ||
max: string | number; | ||
min: string | number; | ||
step: string | number; | ||
allowEmpty: boolean; | ||
controlsPosition: string; | ||
hideUnit: boolean; | ||
stepStrictly: boolean; | ||
unitCenter: boolean; | ||
showLeft: boolean; | ||
}, true>); | ||
declare const _default: any; | ||
export default _default; |
@@ -1,12 +0,2 @@ | ||
declare const _sfc_main: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").ShallowUnwrapRef<any> & import("@vue/composition-api").Data, {}, {}, Readonly<{ | ||
[x: string]: any; | ||
}>, { | ||
[x: string]: any; | ||
} & {}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{ | ||
[x: string]: any; | ||
} & {}, import("@vue/composition-api").ShallowUnwrapRef<any>, import("@vue/composition-api").Data, {}, {}, { | ||
[x: string]: any; | ||
} & {}, { | ||
[x: string]: any; | ||
}, true>); | ||
declare const _sfc_main: any; | ||
export default _sfc_main; |
@@ -1,30 +0,2 @@ | ||
declare const _sfc_main: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").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").Data, {}, {}, Readonly<{ | ||
[x: string]: any; | ||
}>, { | ||
[x: string]: any; | ||
} & {}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{ | ||
[x: string]: any; | ||
} & {}, import("@vue/composition-api").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").Data, {}, {}, { | ||
[x: string]: any; | ||
} & {}, { | ||
[x: string]: any; | ||
}, true>); | ||
declare const _sfc_main: any; | ||
export default _sfc_main; |
@@ -1,30 +0,2 @@ | ||
declare const _sfc_main: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").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").Data, {}, {}, Readonly<{ | ||
[x: string]: any; | ||
}>, { | ||
[x: string]: any; | ||
} & {}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{ | ||
[x: string]: any; | ||
} & {}, import("@vue/composition-api").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").Data, {}, {}, { | ||
[x: string]: any; | ||
} & {}, { | ||
[x: string]: any; | ||
}, true>); | ||
declare const _sfc_main: any; | ||
export default _sfc_main; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29179
821
4
Updated@opentiny/vue-common@~2.8.2
Updated@opentiny/vue-icon@~2.8.2