@chewel611/naive-ui-plus 0.0.5 → 0.0.7
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/index.js +4454 -775
- package/dist/index.umd.cjs +27 -1
- package/es/_virtual/_commonjsHelpers.js +4 -0
- package/es/_virtual/lodash.js +2 -0
- package/es/_virtual/lodash2.js +4 -0
- package/es/modal/PModal.d.ts +5 -2
- package/es/modal/PModal.vue.js +74 -70
- package/es/modal/index.d.ts +7 -4
- package/es/modal/typing.d.ts +1 -1
- package/es/node_modules/lodash/lodash.js +3677 -0
- package/es/table/PTable.d.ts +1 -0
- package/es/table/PTable.vue.js +150 -150
- package/es/table/index.d.ts +3 -0
- package/es/table/typing.d.ts +2 -2
- package/es/utils/helper.d.ts +1 -1
- package/es/utils/helper.js +5 -4
- package/lib/_virtual/_commonjsHelpers.cjs +1 -0
- package/lib/_virtual/lodash.cjs +1 -0
- package/lib/_virtual/lodash2.cjs +1 -0
- package/lib/modal/PModal.d.ts +5 -2
- package/lib/modal/PModal.vue.cjs +1 -1
- package/lib/modal/index.d.ts +7 -4
- package/lib/modal/typing.d.ts +1 -1
- package/lib/node_modules/lodash/lodash.cjs +27 -0
- package/lib/table/PTable.d.ts +1 -0
- package/lib/table/PTable.vue.cjs +1 -1
- package/lib/table/index.d.ts +3 -0
- package/lib/table/typing.d.ts +2 -2
- package/lib/utils/helper.cjs +1 -1
- package/lib/utils/helper.d.ts +1 -1
- package/package.json +1 -3
package/es/modal/index.d.ts
CHANGED
|
@@ -4,9 +4,9 @@ declare const _default: {
|
|
|
4
4
|
close: () => void;
|
|
5
5
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
6
6
|
width: number;
|
|
7
|
+
height: number;
|
|
7
8
|
title: string;
|
|
8
9
|
closable: boolean;
|
|
9
|
-
preset: "dialog" | "card";
|
|
10
10
|
saveBtnText: string;
|
|
11
11
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
12
12
|
$modal: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -2093,9 +2093,9 @@ declare const _default: {
|
|
|
2093
2093
|
close: () => void;
|
|
2094
2094
|
}, {}, {}, {}, {
|
|
2095
2095
|
width: number;
|
|
2096
|
+
height: number;
|
|
2096
2097
|
title: string;
|
|
2097
2098
|
closable: boolean;
|
|
2098
|
-
preset: "dialog" | "card";
|
|
2099
2099
|
saveBtnText: string;
|
|
2100
2100
|
}>;
|
|
2101
2101
|
__isFragment?: never;
|
|
@@ -2106,14 +2106,17 @@ declare const _default: {
|
|
|
2106
2106
|
close: () => void;
|
|
2107
2107
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
2108
2108
|
width: number;
|
|
2109
|
+
height: number;
|
|
2109
2110
|
title: string;
|
|
2110
2111
|
closable: boolean;
|
|
2111
|
-
preset: "dialog" | "card";
|
|
2112
2112
|
saveBtnText: string;
|
|
2113
2113
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
2114
2114
|
$slots: {
|
|
2115
|
+
header?(_: {}): any;
|
|
2116
|
+
'header-extra'?(_: {}): any;
|
|
2115
2117
|
default?(_: {}): any;
|
|
2116
|
-
|
|
2118
|
+
footer?(_: {}): any;
|
|
2119
|
+
'action-extra'?(_: {}): any;
|
|
2117
2120
|
};
|
|
2118
2121
|
}) & import('vue').Plugin;
|
|
2119
2122
|
export default _default;
|
package/es/modal/typing.d.ts
CHANGED