@opentiny/vue-dialog-box
Advanced tools
Comparing version 2.8.0 to 2.8.2
@@ -19,8 +19,9 @@ 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)) | ||
return MobileFirstTemplate; | ||
else | ||
return PcTemplate; | ||
} | ||
return PcTemplate; | ||
}; | ||
@@ -27,0 +28,0 @@ var $constants = { |
{ | ||
"name": "@opentiny/vue-dialog-box", | ||
"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,216 +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: () => { | ||
DIALOG_SLIDER_RIGHT: string; | ||
DIALOG_FADE: string; | ||
SELECT_DROPDOWN: string; | ||
DROPDOWN_MENU: string; | ||
DIALOG_BOX_CLASS: string; | ||
PC_SCROLL_LOCK_CLASS: string; | ||
MOBILE_SCROLL_LOCK_CLASS: string; | ||
Mode: string; | ||
scrollLockClass(mode: any): string; | ||
}; | ||
}; | ||
appendToBody: { | ||
type: BooleanConstructor; | ||
default: () => false; | ||
}; | ||
beforeClose: FunctionConstructor; | ||
center: { | ||
type: BooleanConstructor; | ||
default: () => false; | ||
}; | ||
closeOnClickModal: { | ||
type: BooleanConstructor; | ||
default: () => true; | ||
}; | ||
closeOnPressEscape: { | ||
type: BooleanConstructor; | ||
default: () => true; | ||
}; | ||
destroyOnClose: BooleanConstructor; | ||
dialogClass: { | ||
type: StringConstructor; | ||
default: () => string; | ||
}; | ||
draggable: { | ||
type: BooleanConstructor; | ||
default: () => false; | ||
}; | ||
fullscreen: { | ||
type: BooleanConstructor; | ||
default: () => false; | ||
}; | ||
isFormReset: { | ||
type: BooleanConstructor; | ||
default: () => true; | ||
}; | ||
lockScroll: { | ||
type: BooleanConstructor; | ||
default: () => true; | ||
}; | ||
modal: { | ||
type: BooleanConstructor; | ||
default: () => true; | ||
}; | ||
modalAppendToBody: { | ||
type: BooleanConstructor; | ||
default: () => true; | ||
}; | ||
resize: { | ||
type: BooleanConstructor; | ||
default: () => false; | ||
}; | ||
rightSlide: { | ||
type: BooleanConstructor; | ||
default: () => false; | ||
}; | ||
showClose: { | ||
type: BooleanConstructor; | ||
default: () => true; | ||
}; | ||
showHeader: { | ||
type: BooleanConstructor; | ||
default: () => true; | ||
}; | ||
title: { | ||
type: StringConstructor; | ||
default: () => string; | ||
}; | ||
top: StringConstructor; | ||
visible: { | ||
type: BooleanConstructor; | ||
default: () => false; | ||
}; | ||
width: { | ||
type: StringConstructor; | ||
default: () => string; | ||
}; | ||
maxHeight: { | ||
type: StringConstructor; | ||
default: () => string; | ||
}; | ||
tiny_mode: StringConstructor; | ||
tiny_mode_root: BooleanConstructor; | ||
tiny_template: (FunctionConstructor | ObjectConstructor)[]; | ||
tiny_renderless: FunctionConstructor; | ||
tiny_theme: StringConstructor; | ||
tiny_chart_theme: ObjectConstructor; | ||
}, { | ||
title: string; | ||
tiny_mode_root: boolean; | ||
maxHeight: string; | ||
appendToBody: boolean; | ||
visible: boolean; | ||
showHeader: boolean; | ||
center: boolean; | ||
_constants: Record<string, any>; | ||
width: string; | ||
resize: boolean; | ||
modal: boolean; | ||
lockScroll: boolean; | ||
destroyOnClose: boolean; | ||
closeOnClickModal: boolean; | ||
closeOnPressEscape: boolean; | ||
dialogClass: string; | ||
draggable: boolean; | ||
fullscreen: boolean; | ||
isFormReset: boolean; | ||
modalAppendToBody: boolean; | ||
rightSlide: boolean; | ||
showClose: boolean; | ||
} & { | ||
tiny_mode?: string | undefined; | ||
tiny_template?: unknown; | ||
tiny_renderless?: Function | undefined; | ||
tiny_theme?: string | undefined; | ||
tiny_chart_theme?: Record<string, any> | undefined; | ||
beforeClose?: Function | undefined; | ||
top?: string | undefined; | ||
}> & import("vue").VueConstructor<import("vue").default> & (new (...args: any[]) => import("@vue/composition-api").ComponentRenderProxy<{ | ||
title: string; | ||
tiny_mode_root: boolean; | ||
maxHeight: string; | ||
appendToBody: boolean; | ||
visible: boolean; | ||
showHeader: boolean; | ||
center: boolean; | ||
_constants: Record<string, any>; | ||
width: string; | ||
resize: boolean; | ||
modal: boolean; | ||
lockScroll: boolean; | ||
destroyOnClose: boolean; | ||
closeOnClickModal: boolean; | ||
closeOnPressEscape: boolean; | ||
dialogClass: string; | ||
draggable: boolean; | ||
fullscreen: boolean; | ||
isFormReset: boolean; | ||
modalAppendToBody: boolean; | ||
rightSlide: boolean; | ||
showClose: boolean; | ||
} & { | ||
tiny_mode?: string | undefined; | ||
tiny_template?: unknown; | ||
tiny_renderless?: Function | undefined; | ||
tiny_theme?: string | undefined; | ||
tiny_chart_theme?: Record<string, any> | undefined; | ||
beforeClose?: Function | undefined; | ||
top?: string | undefined; | ||
}, import("@vue/composition-api").ShallowUnwrapRef<() => import("vue").VNode>, import("@vue/composition-api").Data, {}, {}, { | ||
title: string; | ||
tiny_mode_root: boolean; | ||
maxHeight: string; | ||
appendToBody: boolean; | ||
visible: boolean; | ||
showHeader: boolean; | ||
center: boolean; | ||
_constants: Record<string, any>; | ||
width: string; | ||
resize: boolean; | ||
modal: boolean; | ||
lockScroll: boolean; | ||
destroyOnClose: boolean; | ||
closeOnClickModal: boolean; | ||
closeOnPressEscape: boolean; | ||
dialogClass: string; | ||
draggable: boolean; | ||
fullscreen: boolean; | ||
isFormReset: boolean; | ||
modalAppendToBody: boolean; | ||
rightSlide: boolean; | ||
showClose: boolean; | ||
} & { | ||
tiny_mode?: string | undefined; | ||
tiny_template?: unknown; | ||
tiny_renderless?: Function | undefined; | ||
tiny_theme?: string | undefined; | ||
tiny_chart_theme?: Record<string, any> | undefined; | ||
beforeClose?: Function | undefined; | ||
top?: string | undefined; | ||
}, { | ||
title: string; | ||
maxHeight: string; | ||
appendToBody: boolean; | ||
visible: boolean; | ||
showHeader: boolean; | ||
center: boolean; | ||
_constants: Record<string, any>; | ||
width: string; | ||
resize: boolean; | ||
modal: boolean; | ||
lockScroll: boolean; | ||
closeOnClickModal: boolean; | ||
closeOnPressEscape: boolean; | ||
dialogClass: string; | ||
draggable: boolean; | ||
fullscreen: boolean; | ||
isFormReset: boolean; | ||
modalAppendToBody: boolean; | ||
rightSlide: boolean; | ||
showClose: boolean; | ||
}, true>); | ||
declare const _default: any; | ||
export default _default; |
@@ -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,12 +0,2 @@ | ||
declare const _sfc_main: import("vue").ComponentOptions<import("vue").default, import("@vue/composition-api").ShallowUnwrapRef<import("@vue/composition-api").Data> & 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<import("@vue/composition-api").Data>, 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
17019
542
Updated@opentiny/vue-common@~2.8.2
Updated@opentiny/vue-icon@~2.8.2