@dao-style/core 1.5.1-beta.7 → 1.5.1-beta.9
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/components/action-icon/action-icon.d.ts +27 -7
- package/dist/components/action-icon/action-icon.vue.d.ts +11 -2
- package/dist/components/action-icon/props.d.ts +4 -2
- package/dist/components/button/button.d.ts +20 -1
- package/dist/components/button/button.vue.d.ts +9 -0
- package/dist/components/button/props.d.ts +4 -0
- package/dist/components/plugin.d.ts +2 -1
- package/dist/dao-style.js +6 -6
- package/dist/dao-style.mjs +3175 -3046
- package/dist/directives/index.d.ts +1 -0
- package/dist/directives/plugin.d.ts +3 -0
- package/dist/directives/tooltip/directive.d.ts +3 -0
- package/dist/directives/tooltip/index.d.ts +4 -0
- package/dist/directives/tooltip/wrapper.d.ts +15 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
- package/volar.d.ts +2 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './tooltip';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
import { PopperContentProps } from '../../components/popper/popper-props';
|
|
3
|
+
export declare const popperContentMap: Map<string, Partial<{
|
|
4
|
+
content: string;
|
|
5
|
+
resolve: CallableFunction;
|
|
6
|
+
props: PopperContentProps;
|
|
7
|
+
isOpen: boolean;
|
|
8
|
+
}>>;
|
|
9
|
+
declare const _default: import("vue").DefineComponent<{}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
12
|
+
export default _default;
|
|
13
|
+
export declare const popperIdWeakMap: WeakMap<object, any>;
|
|
14
|
+
export declare const popperOptionsWeakMap: WeakMap<object, any>;
|
|
15
|
+
export declare const createPopperContent: (el: HTMLElement, content: string, isOpen: Ref<boolean>) => Promise<unknown>;
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import './styles/color/var.json';
|
|
|
3
3
|
import './styles/color/alias.json';
|
|
4
4
|
declare function locale(lang: string): any;
|
|
5
5
|
export * from './components';
|
|
6
|
+
export * from './directives';
|
|
6
7
|
export * from './utils';
|
|
7
8
|
declare const _default: {
|
|
8
9
|
install: ((app: App<any>, ...options: any[]) => any) & {
|
package/package.json
CHANGED
package/volar.d.ts
CHANGED
|
@@ -55,6 +55,8 @@ declare module 'vue' {
|
|
|
55
55
|
DaoTooltip: typeof import('@dao-style/core')['DaoTooltip']
|
|
56
56
|
DaoTransfer: typeof import('@dao-style/core')['DaoTransfer']
|
|
57
57
|
DaoTransferPanel: typeof import('@dao-style/core')['DaoTransferPanel']
|
|
58
|
+
vDaoTooltip: typeof import('@dao-style/core')['vDaoTooltip']
|
|
59
|
+
DaoPopperContentWrapper: typeof import('@dao-style/core')['DaoPopperContentWrapper']
|
|
58
60
|
}
|
|
59
61
|
}
|
|
60
62
|
export {};
|