ll-plus 2.1.19 → 2.1.20
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/es/components/drawer/src/components/second-confirmation/index.d.ts +1 -3
- package/es/components/drawer/src/components/second-confirmation/src/second-confirmation.vue.d.ts +1 -3
- package/es/components/modal/index.d.ts +1 -3
- package/es/components/modal/src/modal.d.ts +4 -0
- package/es/components/modal/src/modal.mjs.map +1 -1
- package/es/components/modal/src/modal.vue.d.ts +2 -3
- package/es/components/modal/src/modal.vue2.mjs +9 -3
- package/es/components/modal/src/modal.vue2.mjs.map +1 -1
- package/es/utils/props/runtime.d.ts +2 -2
- package/index.full.js +9 -3
- package/index.full.min.js +9 -9
- package/index.full.min.js.map +1 -1
- package/index.full.min.mjs +9 -9
- package/index.full.min.mjs.map +1 -1
- package/index.full.mjs +9 -3
- package/lib/components/drawer/src/components/second-confirmation/index.d.ts +1 -3
- package/lib/components/drawer/src/components/second-confirmation/src/second-confirmation.vue.d.ts +1 -3
- package/lib/components/modal/index.d.ts +1 -3
- package/lib/components/modal/src/modal.d.ts +4 -0
- package/lib/components/modal/src/modal.js.map +1 -1
- package/lib/components/modal/src/modal.vue.d.ts +2 -3
- package/lib/components/modal/src/modal.vue2.js +9 -3
- package/lib/components/modal/src/modal.vue2.js.map +1 -1
- package/lib/utils/props/runtime.d.ts +2 -2
- package/package.json +1 -1
- package/theme-chalk/fonts/iconfont.js +1 -1
- package/theme-chalk/fonts/iconfont.json +28 -0
- package/types/packages/components/drawer/src/components/second-confirmation/index.d.ts +1 -3
- package/types/packages/components/drawer/src/components/second-confirmation/src/second-confirmation.vue.d.ts +1 -3
- package/types/packages/components/modal/index.d.ts +1 -3
- package/types/packages/components/modal/src/modal.d.ts +4 -0
- package/types/packages/components/modal/src/modal.vue.d.ts +2 -3
- package/types/packages/utils/props/runtime.d.ts +2 -2
|
@@ -87,9 +87,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
87
87
|
modal: import("vue").Ref<HTMLElement | undefined>;
|
|
88
88
|
hasScroll: import("vue").Ref<boolean>;
|
|
89
89
|
symbolClass: import("vue").Ref<string>;
|
|
90
|
-
getBindValue: import("vue").ComputedRef<
|
|
91
|
-
[x: number]: unknown;
|
|
92
|
-
}>;
|
|
90
|
+
getBindValue: import("vue").ComputedRef<import("ll-plus/es/components").IResultType>;
|
|
93
91
|
handleCancel: () => void;
|
|
94
92
|
handleOk: () => void;
|
|
95
93
|
handleResize: () => Promise<void>;
|
|
@@ -43,9 +43,7 @@ export declare const LlModal: import("ll-plus/es/utils").SFCWithInstall<import("
|
|
|
43
43
|
modal: import("vue").Ref<HTMLElement | undefined>;
|
|
44
44
|
hasScroll: import("vue").Ref<boolean>;
|
|
45
45
|
symbolClass: import("vue").Ref<string>;
|
|
46
|
-
getBindValue: import("vue").ComputedRef<
|
|
47
|
-
[x: number]: unknown;
|
|
48
|
-
}>;
|
|
46
|
+
getBindValue: import("vue").ComputedRef<import("./src/modal").IResultType>;
|
|
49
47
|
handleCancel: () => void;
|
|
50
48
|
handleOk: () => void;
|
|
51
49
|
handleResize: () => Promise<void>;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import type { ExtractPropTypes } from 'vue';
|
|
2
2
|
import type Modal from './modal.vue';
|
|
3
3
|
type IType = 'confirm' | 'operate' | 'upload';
|
|
4
|
+
export interface IResultType {
|
|
5
|
+
[key: string]: unknown;
|
|
6
|
+
showFooter?: null;
|
|
7
|
+
}
|
|
4
8
|
export declare const modalProps: {
|
|
5
9
|
readonly open: import("ll-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
6
10
|
readonly title: import("ll-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "提示", boolean>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { IResultType } from './modal';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
2
3
|
readonly open: import("ll-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
3
4
|
readonly title: import("ll-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "提示", boolean>;
|
|
@@ -42,9 +43,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
42
43
|
modal: import("vue").Ref<HTMLElement | undefined>;
|
|
43
44
|
hasScroll: import("vue").Ref<boolean>;
|
|
44
45
|
symbolClass: import("vue").Ref<string>;
|
|
45
|
-
getBindValue: import("vue").ComputedRef<
|
|
46
|
-
[x: number]: unknown;
|
|
47
|
-
}>;
|
|
46
|
+
getBindValue: import("vue").ComputedRef<IResultType>;
|
|
48
47
|
handleCancel: () => void;
|
|
49
48
|
handleOk: () => void;
|
|
50
49
|
handleResize: () => Promise<void>;
|
|
@@ -27,6 +27,6 @@ export declare const buildProp: <Type = never, Value = never, Validator = never,
|
|
|
27
27
|
export type TestProps = Record<string, {
|
|
28
28
|
[epPropKey]: true;
|
|
29
29
|
} | NativePropType | EpPropInput<any, any, any, any, any>>;
|
|
30
|
-
export declare const buildProps: <Props extends Record<string,
|
|
30
|
+
export declare const buildProps: <Props extends Record<string, {
|
|
31
31
|
__epPropKey: true;
|
|
32
|
-
}
|
|
32
|
+
} | NativePropType | EpPropInput<any, any, any, any, any>>>(props: Props) => { [K in keyof Props]: IfEpProp<Props[K], Props[K], IfNativePropType<Props[K], Props[K], EpPropConvert<Props[K]>>>; };
|