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