@keyblade/pro-components 1.13.8-alpha.35 → 1.13.8-alpha.36
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/global-props.d.ts +12 -6
- package/es/inerface.d.ts +3 -3
- package/es/pro-calendar/calendar.vue.d.ts +2 -2
- package/es/pro-calendar/header.vue.d.ts +1 -1
- package/es/pro-calendar/index.d.ts +16 -16
- package/es/pro-calendar/month.vue.d.ts +1 -1
- package/es/pro-calendar/week.vue.d.ts +1 -1
- package/es/pro-calendar/year.vue.d.ts +1 -1
- package/es/pro-date-range-picker/index.d.ts +8 -8
- package/es/pro-date-range-picker/pro-date-range-picker.vue.d.ts +1 -1
- package/es/pro-date-range-picker/pro-date-range-picker.vue.js +1 -1
- package/es/pro-dates-picker/index.d.ts +3 -3
- package/es/pro-dates-picker/index.vue.d.ts +1 -1
- package/es/pro-footer-bar/index.d.ts +3 -3
- package/es/pro-footer-bar/index.vue.d.ts +1 -1
- package/es/pro-footer-bar/index.vue.js +2 -2
- package/es/pro-form-group/index.d.ts +6 -6
- package/es/pro-form-group/index.vue.d.ts +2 -2
- package/es/pro-form-group/index.vue.js +1 -1
- package/es/pro-image-upload/image-upload.vue.d.ts +1 -1
- package/es/pro-image-upload/index.d.ts +3 -3
- package/es/pro-layout/index.d.ts +2 -0
- package/es/pro-layout/pro-layout.vue.d.ts +2 -0
- package/es/pro-layout/pro-layout.vue.js +92 -89
- package/es/pro-page-container/constant.d.ts +2 -0
- package/es/pro-page-container/constant.js +9 -0
- package/es/pro-page-container/index.d.ts +6 -33
- package/es/pro-page-container/interface.d.ts +12 -0
- package/es/pro-page-container/pro-page-container.vue.d.ts +4 -19
- package/es/pro-page-container/pro-page-container.vue.js +51 -38
- package/es/pro-page-header/constant.d.ts +2 -0
- package/es/pro-page-header/constant.js +13 -0
- package/es/pro-page-header/index.d.ts +3 -153
- package/es/pro-page-header/interface.d.ts +21 -0
- package/es/pro-page-header/pro-page-header.vue.d.ts +2 -105
- package/es/pro-page-header/pro-page-header.vue.js +140 -126
- package/es/pro-textarea/index.d.ts +4 -4
- package/es/pro-textarea/index.vue.d.ts +1 -1
- package/es/pro-textarea/index.vue.js +2 -2
- package/es/style.css +1 -1
- package/package.json +2 -1
- package/es/pro-page-container/inerface.d.ts +0 -12
- /package/es/pro-calendar/{inerface.d.ts → interface.d.ts} +0 -0
- /package/es/pro-date-range-picker/{inerface.d.ts → interface.d.ts} +0 -0
- /package/es/pro-dates-picker/{inerface.d.ts → interface.d.ts} +0 -0
- /package/es/pro-footer-bar/{inerface.d.ts → interface.d.ts} +0 -0
- /package/es/pro-textarea/{inerface.d.ts → interface.d.ts} +0 -0
package/es/global-props.d.ts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { ProFooterBarProps } from './pro-footer-bar/
|
|
1
|
+
import { ProFooterBarProps } from './pro-footer-bar/interface.ts';
|
|
2
2
|
import { ProTableProps } from './pro-table/interface';
|
|
3
|
-
import { ProTextareaProps } from './pro-textarea';
|
|
4
|
-
import { ProDateRangePickerProps } from './pro-date-range-picker/
|
|
5
|
-
import { ProCalendarProps } from './pro-calendar';
|
|
6
|
-
import { ProDatesPickerProps } from './pro-dates-picker/
|
|
7
|
-
import { ProLoaderProps } from './pro-loader';
|
|
3
|
+
import { ProTextareaProps } from './pro-textarea/interface.ts';
|
|
4
|
+
import { ProDateRangePickerProps } from './pro-date-range-picker/interface.ts';
|
|
5
|
+
import { ProCalendarProps } from './pro-calendar/interface.ts';
|
|
6
|
+
import { ProDatesPickerProps } from './pro-dates-picker/interface.ts';
|
|
7
|
+
import { ProLoaderProps } from './pro-loader/interface.ts';
|
|
8
|
+
import { PageContainerProps } from './pro-page-container/interface.ts';
|
|
9
|
+
import { PageHeaderProps } from './pro-page-header/interface.ts';
|
|
8
10
|
export interface GlobalProps {
|
|
9
11
|
footerBar?: ProFooterBarProps;
|
|
10
12
|
dateRangePicker?: ProDateRangePickerProps;
|
|
@@ -13,5 +15,9 @@ export interface GlobalProps {
|
|
|
13
15
|
table?: ProTableProps;
|
|
14
16
|
calendar?: ProCalendarProps;
|
|
15
17
|
loader?: ProLoaderProps;
|
|
18
|
+
/** 页面容器 */
|
|
19
|
+
pageContainer?: PageContainerProps;
|
|
20
|
+
/** 页头 */
|
|
21
|
+
pageHeader?: PageHeaderProps;
|
|
16
22
|
}
|
|
17
23
|
export declare const globalProps: GlobalProps;
|
package/es/inerface.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './pro-footer-bar/
|
|
2
|
-
export * from './pro-date-range-picker/
|
|
1
|
+
export * from './pro-footer-bar/interface';
|
|
2
|
+
export * from './pro-date-range-picker/interface.ts';
|
|
3
3
|
export * from './pro-table/interface';
|
|
4
4
|
export * from './pro-login/interface';
|
|
5
|
-
export * from './pro-find-password';
|
|
5
|
+
export * from './pro-find-password/interface.ts';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IProCalendarProps } from './
|
|
1
|
+
import { IProCalendarProps } from './interface.ts';
|
|
2
2
|
import { EMode } from './enum';
|
|
3
3
|
declare function changePageShowDate(type: 'prev' | 'next', unit: EMode): void;
|
|
4
4
|
declare function __VLS_template(): {
|
|
@@ -57,7 +57,7 @@ declare const __VLS_component: import('vue').DefineComponent<IProCalendarProps,
|
|
|
57
57
|
"onUpdate:modelValue"?: ((date: Date) => any) | undefined;
|
|
58
58
|
onPanelChange?: ((date: Date) => any) | undefined;
|
|
59
59
|
}>, {
|
|
60
|
-
header: boolean | import('./
|
|
60
|
+
header: boolean | import('./interface.ts').IHeaderObjProps;
|
|
61
61
|
modes: (EMode.month | EMode.year)[];
|
|
62
62
|
defaultMode: EMode.month | EMode.year;
|
|
63
63
|
allowSelect: boolean;
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
2
|
import { ArcoOptions } from '@arco-design/web-vue/es/_utils/types';
|
|
3
3
|
import { default as _ProCalendar } from './calendar.vue';
|
|
4
|
-
import { ProCalendarProps } from './
|
|
4
|
+
import { ProCalendarProps } from './interface.ts';
|
|
5
5
|
declare const ProCalendar: {
|
|
6
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./
|
|
6
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./interface.ts').IProCalendarProps> & Readonly<{
|
|
7
7
|
onChange?: ((date: Date) => any) | undefined;
|
|
8
8
|
"onUpdate:modelValue"?: ((date: Date) => any) | undefined;
|
|
9
9
|
onPanelChange?: ((date: Date) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
|
-
changePageShowDate: (type: "prev" | "next", unit: import('./enum').EMode) => void;
|
|
11
|
+
changePageShowDate: (type: "prev" | "next", unit: import('./enum.ts').EMode) => void;
|
|
12
12
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
13
|
change: (date: Date) => any;
|
|
14
14
|
"update:modelValue": (date: Date) => any;
|
|
15
15
|
panelChange: (date: Date) => any;
|
|
16
16
|
}, import('vue').PublicProps, {
|
|
17
|
-
header: boolean | import('./
|
|
18
|
-
modes: (import("./enum").EMode.month | import("./enum").EMode.year)[];
|
|
19
|
-
defaultMode: import("./enum").EMode.month | import("./enum").EMode.year;
|
|
17
|
+
header: boolean | import('./interface.ts').IHeaderObjProps;
|
|
18
|
+
modes: (import("./enum.ts").EMode.month | import("./enum.ts").EMode.year)[];
|
|
19
|
+
defaultMode: import("./enum.ts").EMode.month | import("./enum.ts").EMode.year;
|
|
20
20
|
allowSelect: boolean;
|
|
21
21
|
panelTodayBtn: boolean;
|
|
22
22
|
dayStartOfWeek: 0 | 1;
|
|
@@ -29,16 +29,16 @@ declare const ProCalendar: {
|
|
|
29
29
|
C: {};
|
|
30
30
|
M: {};
|
|
31
31
|
Defaults: {};
|
|
32
|
-
}, Readonly<import('./
|
|
32
|
+
}, Readonly<import('./interface.ts').IProCalendarProps> & Readonly<{
|
|
33
33
|
onChange?: ((date: Date) => any) | undefined;
|
|
34
34
|
"onUpdate:modelValue"?: ((date: Date) => any) | undefined;
|
|
35
35
|
onPanelChange?: ((date: Date) => any) | undefined;
|
|
36
36
|
}>, {
|
|
37
|
-
changePageShowDate: (type: "prev" | "next", unit: import('./enum').EMode) => void;
|
|
37
|
+
changePageShowDate: (type: "prev" | "next", unit: import('./enum.ts').EMode) => void;
|
|
38
38
|
}, {}, {}, {}, {
|
|
39
|
-
header: boolean | import('./
|
|
40
|
-
modes: (import("./enum").EMode.month | import("./enum").EMode.year)[];
|
|
41
|
-
defaultMode: import("./enum").EMode.month | import("./enum").EMode.year;
|
|
39
|
+
header: boolean | import('./interface.ts').IHeaderObjProps;
|
|
40
|
+
modes: (import("./enum.ts").EMode.month | import("./enum.ts").EMode.year)[];
|
|
41
|
+
defaultMode: import("./enum.ts").EMode.month | import("./enum.ts").EMode.year;
|
|
42
42
|
allowSelect: boolean;
|
|
43
43
|
panelTodayBtn: boolean;
|
|
44
44
|
dayStartOfWeek: 0 | 1;
|
|
@@ -48,20 +48,20 @@ declare const ProCalendar: {
|
|
|
48
48
|
__isFragment?: never;
|
|
49
49
|
__isTeleport?: never;
|
|
50
50
|
__isSuspense?: never;
|
|
51
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('./
|
|
51
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./interface.ts').IProCalendarProps> & Readonly<{
|
|
52
52
|
onChange?: ((date: Date) => any) | undefined;
|
|
53
53
|
"onUpdate:modelValue"?: ((date: Date) => any) | undefined;
|
|
54
54
|
onPanelChange?: ((date: Date) => any) | undefined;
|
|
55
55
|
}>, {
|
|
56
|
-
changePageShowDate: (type: "prev" | "next", unit: import('./enum').EMode) => void;
|
|
56
|
+
changePageShowDate: (type: "prev" | "next", unit: import('./enum.ts').EMode) => void;
|
|
57
57
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
58
58
|
change: (date: Date) => any;
|
|
59
59
|
"update:modelValue": (date: Date) => any;
|
|
60
60
|
panelChange: (date: Date) => any;
|
|
61
61
|
}, string, {
|
|
62
|
-
header: boolean | import('./
|
|
63
|
-
modes: (import("./enum").EMode.month | import("./enum").EMode.year)[];
|
|
64
|
-
defaultMode: import("./enum").EMode.month | import("./enum").EMode.year;
|
|
62
|
+
header: boolean | import('./interface.ts').IHeaderObjProps;
|
|
63
|
+
modes: (import("./enum.ts").EMode.month | import("./enum.ts").EMode.year)[];
|
|
64
|
+
defaultMode: import("./enum.ts").EMode.month | import("./enum.ts").EMode.year;
|
|
65
65
|
allowSelect: boolean;
|
|
66
66
|
panelTodayBtn: boolean;
|
|
67
67
|
dayStartOfWeek: 0 | 1;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { IProCalendarWeek } from './
|
|
1
|
+
import { IProCalendarWeek } from './interface.ts';
|
|
2
2
|
declare const _default: import('vue').DefineComponent<IProCalendarWeek, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IProCalendarWeek> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
3
3
|
export default _default;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { IProCalendarYear } from './
|
|
1
|
+
import { IProCalendarYear } from './interface.ts';
|
|
2
2
|
declare const _default: import('vue').DefineComponent<IProCalendarYear, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IProCalendarYear> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
3
3
|
export default _default;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
2
|
declare const ProDateRangePicker: {
|
|
3
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./
|
|
4
|
-
"onUpdate:modelValue"?: ((value: import('./
|
|
3
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./interface').IProDateRangePickerProps> & Readonly<{
|
|
4
|
+
"onUpdate:modelValue"?: ((value: import('./interface').IModelValue) => any) | undefined;
|
|
5
5
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
6
|
-
"update:modelValue": (value: import('./
|
|
6
|
+
"update:modelValue": (value: import('./interface').IModelValue) => any;
|
|
7
7
|
}, import('vue').PublicProps, {
|
|
8
8
|
hideLabel: boolean;
|
|
9
9
|
separator: string;
|
|
@@ -22,8 +22,8 @@ declare const ProDateRangePicker: {
|
|
|
22
22
|
C: {};
|
|
23
23
|
M: {};
|
|
24
24
|
Defaults: {};
|
|
25
|
-
}, Readonly<import('./
|
|
26
|
-
"onUpdate:modelValue"?: ((value: import('./
|
|
25
|
+
}, Readonly<import('./interface').IProDateRangePickerProps> & Readonly<{
|
|
26
|
+
"onUpdate:modelValue"?: ((value: import('./interface').IModelValue) => any) | undefined;
|
|
27
27
|
}>, {}, {}, {}, {}, {
|
|
28
28
|
hideLabel: boolean;
|
|
29
29
|
separator: string;
|
|
@@ -35,10 +35,10 @@ declare const ProDateRangePicker: {
|
|
|
35
35
|
__isFragment?: never;
|
|
36
36
|
__isTeleport?: never;
|
|
37
37
|
__isSuspense?: never;
|
|
38
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('./
|
|
39
|
-
"onUpdate:modelValue"?: ((value: import('./
|
|
38
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./interface').IProDateRangePickerProps> & Readonly<{
|
|
39
|
+
"onUpdate:modelValue"?: ((value: import('./interface').IModelValue) => any) | undefined;
|
|
40
40
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
41
|
-
"update:modelValue": (value: import('./
|
|
41
|
+
"update:modelValue": (value: import('./interface').IModelValue) => any;
|
|
42
42
|
}, string, {
|
|
43
43
|
hideLabel: boolean;
|
|
44
44
|
separator: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IModelValue, IProDateRangePickerProps } from './
|
|
1
|
+
import { IModelValue, IProDateRangePickerProps } from './interface.ts';
|
|
2
2
|
declare const _default: import('vue').DefineComponent<IProDateRangePickerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
3
3
|
"update:modelValue": (value: IModelValue) => any;
|
|
4
4
|
}, string, import('vue').PublicProps, Readonly<IProDateRangePickerProps> & Readonly<{
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./pro-date-range-picker.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import r from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const _ = /* @__PURE__ */ r(o, [["__scopeId", "data-v-
|
|
4
|
+
const _ = /* @__PURE__ */ r(o, [["__scopeId", "data-v-686f3de9"]]);
|
|
5
5
|
export {
|
|
6
6
|
_ as default
|
|
7
7
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
2
|
declare const ProDatesPicker: {
|
|
3
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./
|
|
3
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./interface').IProDatesPickerProps> & Readonly<{
|
|
4
4
|
onClear?: ((ev: FocusEvent) => any) | undefined;
|
|
5
5
|
"onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined;
|
|
6
6
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
@@ -18,7 +18,7 @@ declare const ProDatesPicker: {
|
|
|
18
18
|
C: {};
|
|
19
19
|
M: {};
|
|
20
20
|
Defaults: {};
|
|
21
|
-
}, Readonly<import('./
|
|
21
|
+
}, Readonly<import('./interface').IProDatesPickerProps> & Readonly<{
|
|
22
22
|
onClear?: ((ev: FocusEvent) => any) | undefined;
|
|
23
23
|
"onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined;
|
|
24
24
|
}>, {}, {}, {}, {}, {
|
|
@@ -28,7 +28,7 @@ declare const ProDatesPicker: {
|
|
|
28
28
|
__isFragment?: never;
|
|
29
29
|
__isTeleport?: never;
|
|
30
30
|
__isSuspense?: never;
|
|
31
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('./
|
|
31
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./interface').IProDatesPickerProps> & Readonly<{
|
|
32
32
|
onClear?: ((ev: FocusEvent) => any) | undefined;
|
|
33
33
|
"onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined;
|
|
34
34
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
2
|
declare const ProFooterBar: {
|
|
3
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./
|
|
3
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./interface').ProFooterBarProps> & Readonly<{
|
|
4
4
|
onBack?: (() => any) | undefined;
|
|
5
5
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
6
6
|
back: () => any;
|
|
@@ -13,7 +13,7 @@ declare const ProFooterBar: {
|
|
|
13
13
|
C: {};
|
|
14
14
|
M: {};
|
|
15
15
|
Defaults: {};
|
|
16
|
-
}, Readonly<import('./
|
|
16
|
+
}, Readonly<import('./interface').ProFooterBarProps> & Readonly<{
|
|
17
17
|
onBack?: (() => any) | undefined;
|
|
18
18
|
}>, {}, {}, {}, {}, {
|
|
19
19
|
backText: string;
|
|
@@ -21,7 +21,7 @@ declare const ProFooterBar: {
|
|
|
21
21
|
__isFragment?: never;
|
|
22
22
|
__isTeleport?: never;
|
|
23
23
|
__isSuspense?: never;
|
|
24
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('./
|
|
24
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./interface').ProFooterBarProps> & Readonly<{
|
|
25
25
|
onBack?: (() => any) | undefined;
|
|
26
26
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
27
27
|
back: () => any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./index.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import r from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const c = /* @__PURE__ */ r(o, [["__scopeId", "data-v-05cbcd1b"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
c as default
|
|
7
7
|
};
|
|
@@ -2,11 +2,11 @@ import { App } from 'vue';
|
|
|
2
2
|
declare const ProFormGroup: {
|
|
3
3
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4
4
|
label: string;
|
|
5
|
-
heading?:
|
|
5
|
+
heading?: 1 | 6 | 2 | 3 | 4 | 5;
|
|
6
6
|
extra?: string;
|
|
7
7
|
hideIcon?: boolean;
|
|
8
8
|
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
9
|
-
heading:
|
|
9
|
+
heading: 1 | 6 | 2 | 3 | 4 | 5;
|
|
10
10
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
11
11
|
P: {};
|
|
12
12
|
B: {};
|
|
@@ -16,22 +16,22 @@ declare const ProFormGroup: {
|
|
|
16
16
|
Defaults: {};
|
|
17
17
|
}, Readonly<{
|
|
18
18
|
label: string;
|
|
19
|
-
heading?:
|
|
19
|
+
heading?: 1 | 6 | 2 | 3 | 4 | 5;
|
|
20
20
|
extra?: string;
|
|
21
21
|
hideIcon?: boolean;
|
|
22
22
|
}> & Readonly<{}>, {}, {}, {}, {}, {
|
|
23
|
-
heading:
|
|
23
|
+
heading: 1 | 6 | 2 | 3 | 4 | 5;
|
|
24
24
|
}>;
|
|
25
25
|
__isFragment?: never;
|
|
26
26
|
__isTeleport?: never;
|
|
27
27
|
__isSuspense?: never;
|
|
28
28
|
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
29
29
|
label: string;
|
|
30
|
-
heading?:
|
|
30
|
+
heading?: 1 | 6 | 2 | 3 | 4 | 5;
|
|
31
31
|
extra?: string;
|
|
32
32
|
hideIcon?: boolean;
|
|
33
33
|
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
34
|
-
heading:
|
|
34
|
+
heading: 1 | 6 | 2 | 3 | 4 | 5;
|
|
35
35
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
36
36
|
$slots: {
|
|
37
37
|
default?(_: {}): any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
label: string;
|
|
3
3
|
/** 标题大小 */
|
|
4
|
-
heading?:
|
|
4
|
+
heading?: 1 | 6 | 2 | 3 | 4 | 5;
|
|
5
5
|
/** 扩展提示 */
|
|
6
6
|
extra?: string;
|
|
7
7
|
/** 隐藏icon */
|
|
@@ -17,7 +17,7 @@ declare function __VLS_template(): {
|
|
|
17
17
|
};
|
|
18
18
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
19
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
20
|
-
heading:
|
|
20
|
+
heading: 1 | 6 | 2 | 3 | 4 | 5;
|
|
21
21
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
22
22
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
23
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./index.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import r from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const _ = /* @__PURE__ */ r(o, [["__scopeId", "data-v-
|
|
4
|
+
const _ = /* @__PURE__ */ r(o, [["__scopeId", "data-v-da3b25bd"]]);
|
|
5
5
|
export {
|
|
6
6
|
_ as default
|
|
7
7
|
};
|
|
@@ -716,8 +716,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
716
716
|
}>, {
|
|
717
717
|
disabled: boolean;
|
|
718
718
|
name: string;
|
|
719
|
-
multiple: boolean;
|
|
720
719
|
accept: string[];
|
|
720
|
+
multiple: boolean;
|
|
721
721
|
singleLimit: number;
|
|
722
722
|
hideInnerBeforeUploadLoading: boolean;
|
|
723
723
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -662,8 +662,8 @@ declare const ProImageUpload: {
|
|
|
662
662
|
}, import('vue').PublicProps, {
|
|
663
663
|
disabled: boolean;
|
|
664
664
|
name: string;
|
|
665
|
-
multiple: boolean;
|
|
666
665
|
accept: string[];
|
|
666
|
+
multiple: boolean;
|
|
667
667
|
singleLimit: number;
|
|
668
668
|
hideInnerBeforeUploadLoading: boolean;
|
|
669
669
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
@@ -1370,8 +1370,8 @@ declare const ProImageUpload: {
|
|
|
1370
1370
|
}, {}, {}, {}, {
|
|
1371
1371
|
disabled: boolean;
|
|
1372
1372
|
name: string;
|
|
1373
|
-
multiple: boolean;
|
|
1374
1373
|
accept: string[];
|
|
1374
|
+
multiple: boolean;
|
|
1375
1375
|
singleLimit: number;
|
|
1376
1376
|
hideInnerBeforeUploadLoading: boolean;
|
|
1377
1377
|
}>;
|
|
@@ -2040,8 +2040,8 @@ declare const ProImageUpload: {
|
|
|
2040
2040
|
}, string, {
|
|
2041
2041
|
disabled: boolean;
|
|
2042
2042
|
name: string;
|
|
2043
|
-
multiple: boolean;
|
|
2044
2043
|
accept: string[];
|
|
2044
|
+
multiple: boolean;
|
|
2045
2045
|
singleLimit: number;
|
|
2046
2046
|
hideInnerBeforeUploadLoading: boolean;
|
|
2047
2047
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
package/es/pro-layout/index.d.ts
CHANGED
|
@@ -86,6 +86,8 @@ declare const ProLayout: {
|
|
|
86
86
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
87
87
|
$slots: {
|
|
88
88
|
'header-left'?(_: {}): any;
|
|
89
|
+
'header-left-logo-img'?(_: {}): any;
|
|
90
|
+
'header-left-logo-title'?(_: {}): any;
|
|
89
91
|
'header-center-left'?(_: {}): any;
|
|
90
92
|
'header-center-center'?(_: {}): any;
|
|
91
93
|
'header-center-right'?(_: {}): any;
|
|
@@ -4,6 +4,8 @@ declare function __VLS_template(): {
|
|
|
4
4
|
attrs: Partial<{}>;
|
|
5
5
|
slots: {
|
|
6
6
|
'header-left'?(_: {}): any;
|
|
7
|
+
'header-left-logo-img'?(_: {}): any;
|
|
8
|
+
'header-left-logo-title'?(_: {}): any;
|
|
7
9
|
'header-center-left'?(_: {}): any;
|
|
8
10
|
'header-center-center'?(_: {}): any;
|
|
9
11
|
'header-center-right'?(_: {}): any;
|