@keyblade/pro-components 0.0.8 → 0.0.10
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.d.ts +2 -1
- package/es/index.d.ts +1 -0
- package/es/index.js +14 -10
- package/es/pro-drawer-form/index.d.ts +949 -0
- package/es/pro-drawer-form/index.js +13 -0
- package/es/pro-drawer-form/pro-drawer-form.vue.d.ts +443 -0
- package/es/pro-drawer-form/pro-drawer-form.vue.js +63 -0
- package/es/pro-drawer-form/pro-drawer-form.vue2.js +5 -0
- package/es/style.css +3 -3
- package/package.json +1 -1
- package/src/index.ts +4 -0
package/es/components.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
declare module 'vue' {
|
|
2
2
|
interface GlobalComponents {
|
|
3
3
|
KbProBreadcrumb: typeof import('./index')['ProBreadcrumb'];
|
|
4
|
+
KbProDrawerForm: typeof import('./index')['ProDrawerForm'];
|
|
4
5
|
KbProLayout: typeof import('./index')['ProLayout'];
|
|
5
6
|
KbProMenu: typeof import('./index')['ProMenu'];
|
|
6
|
-
|
|
7
|
+
KbProModalForm: typeof import('./index')['ProModalForm'];
|
|
7
8
|
KbProPageWrapper: typeof import('./index')['ProPageWrapper'];
|
|
8
9
|
KbProReuseTabs: typeof import('./index')['ProReuseTabs'];
|
|
9
10
|
}
|
package/es/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ declare const _default: {
|
|
|
4
4
|
};
|
|
5
5
|
export default _default;
|
|
6
6
|
export { default as ProBreadcrumb } from './pro-breadcrumb';
|
|
7
|
+
export { default as ProDrawerForm } from './pro-drawer-form';
|
|
7
8
|
export { default as ProLayout } from './pro-layout';
|
|
8
9
|
export { default as ProMenu } from './pro-menu';
|
|
9
10
|
export type { IProMenuItem } from './pro-menu';
|
package/es/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
import { ProBreadcrumb } from "./pro-breadcrumb/index.js";
|
|
2
2
|
import { default as default2 } from "./pro-breadcrumb/index.js";
|
|
3
|
+
import { ProDrawerForm } from "./pro-drawer-form/index.js";
|
|
4
|
+
import { default as default3 } from "./pro-drawer-form/index.js";
|
|
3
5
|
import { ProLayout } from "./pro-layout/index.js";
|
|
4
|
-
import { default as
|
|
6
|
+
import { default as default4 } from "./pro-layout/index.js";
|
|
5
7
|
import { ProMenu } from "./pro-menu/index.js";
|
|
6
|
-
import { default as
|
|
8
|
+
import { default as default5 } from "./pro-menu/index.js";
|
|
7
9
|
import { ProModalForm } from "./pro-modal-form/index.js";
|
|
8
|
-
import { default as
|
|
10
|
+
import { default as default6 } from "./pro-modal-form/index.js";
|
|
9
11
|
import { ProPageWrapper } from "./pro-page-wrapper/index.js";
|
|
10
|
-
import { default as
|
|
12
|
+
import { default as default7 } from "./pro-page-wrapper/index.js";
|
|
11
13
|
import { ProReuseTabs } from "./pro-reuse-tabs/index.js";
|
|
12
|
-
import { default as
|
|
14
|
+
import { default as default8 } from "./pro-reuse-tabs/index.js";
|
|
13
15
|
const index = {
|
|
14
16
|
install(app) {
|
|
15
17
|
app.use(ProBreadcrumb);
|
|
18
|
+
app.use(ProDrawerForm);
|
|
16
19
|
app.use(ProLayout);
|
|
17
20
|
app.use(ProMenu);
|
|
18
21
|
app.use(ProModalForm);
|
|
@@ -22,10 +25,11 @@ const index = {
|
|
|
22
25
|
};
|
|
23
26
|
export {
|
|
24
27
|
default2 as ProBreadcrumb,
|
|
25
|
-
default3 as
|
|
26
|
-
default4 as
|
|
27
|
-
default5 as
|
|
28
|
-
default6 as
|
|
29
|
-
default7 as
|
|
28
|
+
default3 as ProDrawerForm,
|
|
29
|
+
default4 as ProLayout,
|
|
30
|
+
default5 as ProMenu,
|
|
31
|
+
default6 as ProModalForm,
|
|
32
|
+
default7 as ProPageWrapper,
|
|
33
|
+
default8 as ProReuseTabs,
|
|
30
34
|
index as default
|
|
31
35
|
};
|