@opentiny/vue-common
Advanced tools
Comparing version 3.8.2 to 3.8.3
{ | ||
"name": "@opentiny/vue-common", | ||
"version": "3.8.2", | ||
"version": "3.8.3", | ||
"description": "", | ||
@@ -8,6 +8,6 @@ "main": "./lib/index.js", | ||
"dependencies": { | ||
"@opentiny/vue-locale": "~3.8.2", | ||
"@opentiny/vue-renderless": "~3.8.2", | ||
"@opentiny/vue-theme": "~3.8.2", | ||
"@opentiny/vue-theme-mobile": "~3.8.2", | ||
"@opentiny/vue-locale": "~3.8.3", | ||
"@opentiny/vue-renderless": "~3.8.3", | ||
"@opentiny/vue-theme": "~3.8.3", | ||
"@opentiny/vue-theme-mobile": "~3.8.3", | ||
"tailwind-merge": "^1.8.0" | ||
@@ -14,0 +14,0 @@ }, |
@@ -14,6 +14,11 @@ /** | ||
import { bindFilter, emitter, getElementCssClass, getElementStatusClass } from '../utils'; | ||
declare const Teleport: any; | ||
declare const Teleport: { | ||
new (): { | ||
$props: hooks.VNodeProps & hooks.TeleportProps; | ||
}; | ||
__isTeleport: true; | ||
}; | ||
export { emitter, bindFilter, getElementCssClass, getElementStatusClass, Teleport }; | ||
export declare const defineAsyncComponent: any; | ||
export declare const markRaw: any; | ||
export declare const defineAsyncComponent: typeof hooks.defineAsyncComponent; | ||
export declare const markRaw: typeof hooks.markRaw; | ||
export declare const renderComponent: ({ view, component, props, context: { attrs, slots }, extend }: { | ||
@@ -28,8 +33,12 @@ view?: any; | ||
extend?: {} | undefined; | ||
}) => () => any; | ||
export declare const rootConfig: (context: any) => any; | ||
export declare const getComponentName: () => any; | ||
export declare const appContext: () => any; | ||
export declare const appProperties: () => any; | ||
export declare const useRouter: (instance?: any) => { | ||
}) => () => hooks.VNode<hooks.RendererNode, hooks.RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
export declare const rootConfig: (context: any) => (hooks.ComponentCustomProperties & Record<string, any>) | undefined; | ||
export declare const getComponentName: () => string; | ||
export declare const appContext: () => hooks.AppContext | { | ||
component: () => void; | ||
}; | ||
export declare const appProperties: () => hooks.ComponentCustomProperties & Record<string, any>; | ||
export declare const useRouter: (instance?: hooks.ComponentInternalInstance | null) => { | ||
route: any; | ||
@@ -59,3 +68,3 @@ router: any; | ||
parent: any; | ||
nextTick: any; | ||
nextTick: typeof hooks.nextTick; | ||
constants: any; | ||
@@ -83,3 +92,3 @@ mode: any; | ||
}) => any; | ||
export declare const defineComponent: any; | ||
export declare const defineComponent: typeof hooks.defineComponent; | ||
export default hooks; | ||
@@ -86,0 +95,0 @@ export declare const isVue2 = false; |
@@ -23,6 +23,16 @@ import hooks from './adapter'; | ||
extend?: {} | undefined; | ||
}) => () => hooks.VNode<hooks.RendererNode, hooks.RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
export declare const mergeClass: (...cssClasses: any[]) => string; | ||
export declare const design: { | ||
configKey: symbol; | ||
configInstance: null; | ||
}; | ||
export declare const provideDesignConfig: (designConfig: any) => void; | ||
declare const createComponent: ({ component, propsData, el }: { | ||
component: any; | ||
propsData: any; | ||
el: any; | ||
}) => any; | ||
export declare const mergeClass: (...cssClasses: any[]) => any; | ||
export declare const provideDesignConfig: (designConfig: any) => void; | ||
declare const createComponent: any; | ||
export declare const setup: ({ props, context, renderless, api, extendOptions, mono, classes }: { | ||
@@ -37,10 +47,10 @@ props: any; | ||
}) => { | ||
t: any; | ||
t: (this: any, path: any, options?: any) => any; | ||
vm: any; | ||
f: any; | ||
f: (props: any, attrs?: {}) => {}; | ||
a: (attrs: any, filters: any, include: any) => {}; | ||
d: any; | ||
dp: any; | ||
d: (props: any) => void; | ||
dp: (props: any) => void; | ||
gcls: (key: any) => any; | ||
m: (...cssClasses: any[]) => any; | ||
m: (...cssClasses: any[]) => string; | ||
}; | ||
@@ -50,3 +60,5 @@ export declare const svg: ({ name, component }: { | ||
component: any; | ||
}) => (propData?: any) => any; | ||
}) => (propData?: any) => hooks.Raw<hooks.DefineComponent<{}, () => hooks.VNode<hooks.RendererNode, hooks.RendererElement, { | ||
[key: string]: any; | ||
}>, {}, {}, {}, hooks.ComponentOptionsMixin, hooks.ComponentOptionsMixin, {}, string, hooks.VNodeProps & hooks.AllowedComponentProps & hooks.ComponentCustomProps, Readonly<hooks.ExtractPropTypes<{}>>, {}>>; | ||
export declare const filterAttrs: (attrs: any, filters: any, include: any) => {}; | ||
@@ -60,9 +72,23 @@ export declare let setupComponent: {}; | ||
declare const _default: { | ||
h: any; | ||
directive: any; | ||
parseVnode: any; | ||
useRouter: any; | ||
emitter: any; | ||
createComponent: any; | ||
defineAsyncComponent: any; | ||
h: (component: any, propsData?: any, childData?: any) => hooks.VNode<hooks.RendererNode, hooks.RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
directive: (directives: any) => any; | ||
parseVnode: (vnode: any) => any; | ||
useRouter: (instance?: hooks.ComponentInternalInstance | null) => { | ||
route: any; | ||
router: any; | ||
}; | ||
emitter: () => { | ||
emit(eventName: any): void; | ||
on: (event: any, callback: any, once?: boolean) => void; | ||
once(event: any, callback: any): void; | ||
off(event: any, callback: any): void; | ||
}; | ||
createComponent: ({ component, propsData, el }: { | ||
component: any; | ||
propsData: any; | ||
el: any; | ||
}) => any; | ||
defineAsyncComponent: typeof hooks.defineAsyncComponent; | ||
filterAttrs: (attrs: any, filters: any, include: any) => {}; | ||
@@ -74,3 +100,5 @@ initComponent: () => void; | ||
component: any; | ||
}) => (propData?: any) => any; | ||
}) => (propData?: any) => hooks.Raw<hooks.DefineComponent<{}, () => hooks.VNode<hooks.RendererNode, hooks.RendererElement, { | ||
[key: string]: any; | ||
}>, {}, {}, {}, hooks.ComponentOptionsMixin, hooks.ComponentOptionsMixin, {}, string, hooks.VNodeProps & hooks.AllowedComponentProps & hooks.ComponentCustomProps, Readonly<hooks.ExtractPropTypes<{}>>, {}>>; | ||
$prefix: string; | ||
@@ -91,3 +119,5 @@ $props: { | ||
extend?: {} | undefined; | ||
}) => any; | ||
}) => () => hooks.VNode<hooks.RendererNode, hooks.RendererElement, { | ||
[key: string]: any; | ||
}>; | ||
setup: ({ props, context, renderless, api, extendOptions, mono, classes }: { | ||
@@ -102,15 +132,15 @@ props: any; | ||
}) => { | ||
t: any; | ||
t: (this: any, path: any, options?: any) => any; | ||
vm: any; | ||
f: any; | ||
f: (props: any, attrs?: {}) => {}; | ||
a: (attrs: any, filters: any, include: any) => {}; | ||
d: any; | ||
dp: any; | ||
d: (props: any) => void; | ||
dp: (props: any) => void; | ||
gcls: (key: any) => any; | ||
m: (...cssClasses: any[]) => any; | ||
m: (...cssClasses: any[]) => string; | ||
}; | ||
hooks: any; | ||
getElementStatusClass: any; | ||
hooks: typeof hooks; | ||
getElementStatusClass: (className: any, status: any) => string | undefined; | ||
$install: (component: any) => void; | ||
}; | ||
export default _default; |
Sorry, the diff of this file is too big to display
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
111408
3699