@keyblade/pro-components 0.0.6 → 0.0.8

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.
@@ -3,6 +3,7 @@ declare module 'vue' {
3
3
  KbProBreadcrumb: typeof import('./index')['ProBreadcrumb'];
4
4
  KbProLayout: typeof import('./index')['ProLayout'];
5
5
  KbProMenu: typeof import('./index')['ProMenu'];
6
+ ProModalForm: typeof import('./index')['ProModalForm'];
6
7
  KbProPageWrapper: typeof import('./index')['ProPageWrapper'];
7
8
  KbProReuseTabs: typeof import('./index')['ProReuseTabs'];
8
9
  }
package/es/index.d.ts CHANGED
@@ -7,6 +7,7 @@ export { default as ProBreadcrumb } from './pro-breadcrumb';
7
7
  export { default as ProLayout } from './pro-layout';
8
8
  export { default as ProMenu } from './pro-menu';
9
9
  export type { IProMenuItem } from './pro-menu';
10
+ export { default as ProModalForm } from './pro-modal-form';
10
11
  export { default as ProPageWrapper } from './pro-page-wrapper';
11
12
  export { default as ProReuseTabs } from './pro-reuse-tabs';
12
13
  export type { IProTab } from './pro-reuse-tabs';
package/es/index.js CHANGED
@@ -1,27 +1,31 @@
1
1
  import { ProBreadcrumb } from "./pro-breadcrumb/index.js";
2
2
  import { default as default2 } from "./pro-breadcrumb/index.js";
3
+ import { ProLayout } from "./pro-layout/index.js";
4
+ import { default as default3 } from "./pro-layout/index.js";
3
5
  import { ProMenu } from "./pro-menu/index.js";
4
- import { default as default3 } from "./pro-menu/index.js";
6
+ import { default as default4 } from "./pro-menu/index.js";
7
+ import { ProModalForm } from "./pro-modal-form/index.js";
8
+ import { default as default5 } from "./pro-modal-form/index.js";
5
9
  import { ProPageWrapper } from "./pro-page-wrapper/index.js";
6
- import { default as default4 } from "./pro-page-wrapper/index.js";
10
+ import { default as default6 } from "./pro-page-wrapper/index.js";
7
11
  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";
12
+ import { default as default7 } from "./pro-reuse-tabs/index.js";
11
13
  const index = {
12
14
  install(app) {
13
15
  app.use(ProBreadcrumb);
14
16
  app.use(ProLayout);
15
17
  app.use(ProMenu);
18
+ app.use(ProModalForm);
16
19
  app.use(ProPageWrapper);
17
20
  app.use(ProReuseTabs);
18
21
  }
19
22
  };
20
23
  export {
21
24
  default2 as ProBreadcrumb,
22
- default6 as ProLayout,
23
- default3 as ProMenu,
24
- default4 as ProPageWrapper,
25
- default5 as ProReuseTabs,
25
+ default3 as ProLayout,
26
+ default4 as ProMenu,
27
+ default5 as ProModalForm,
28
+ default6 as ProPageWrapper,
29
+ default7 as ProReuseTabs,
26
30
  index as default
27
31
  };
@@ -1,6 +1,6 @@
1
1
  import _sfc_main from "./pro-layout.vue.js";
2
2
  import "./pro-layout.vue2.js";
3
- import { Layout, Space, Typography, Tooltip, Button, Dropdown, Avatar } from "@arco-design/web-vue";
3
+ import { Layout, Space, Typography, Tooltip, Button, Dropdown, Avatar, Affix } from "@arco-design/web-vue";
4
4
  import { ProMenu } from "../pro-menu/index.js";
5
5
  import { ProReuseTabs } from "../pro-reuse-tabs/index.js";
6
6
  import { ProPageWrapper } from "../pro-page-wrapper/index.js";
@@ -13,6 +13,7 @@ const ProLayout = Object.assign(_sfc_main, {
13
13
  app.use(Button);
14
14
  app.use(Dropdown);
15
15
  app.use(Avatar);
16
+ app.use(Affix);
16
17
  app.use(ProMenu);
17
18
  app.use(ProReuseTabs);
18
19
  app.use(ProPageWrapper);