@cgboiler/biz-mobile 1.0.0 → 1.1.0

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.
Files changed (38) hide show
  1. package/es/index.d.ts +3 -3
  2. package/es/index.js +5 -5
  3. package/es/{project-list/ProjectList.js → project-select/ProjectSelect.js} +1 -1
  4. package/es/project-select/index.d.ts +3 -0
  5. package/es/project-select/index.js +5 -0
  6. package/es/{project-list → project-select}/types.d.ts +1 -1
  7. package/lib/index.d.ts +3 -3
  8. package/lib/index.js +5 -5
  9. package/lib/{project-list/ProjectList.js → project-select/ProjectSelect.js} +1 -1
  10. package/lib/project-select/index.d.ts +3 -0
  11. package/lib/{project-list → project-select}/index.js +2 -2
  12. package/lib/{project-list → project-select}/types.d.ts +1 -1
  13. package/package.json +1 -1
  14. package/es/project-list/index.d.ts +0 -3
  15. package/es/project-list/index.js +0 -5
  16. package/lib/project-list/index.d.ts +0 -3
  17. /package/es/{project-list/ProjectList.d.ts → project-select/ProjectSelect.d.ts} +0 -0
  18. /package/es/{project-list → project-select}/_atomic.css +0 -0
  19. /package/es/{project-list → project-select}/index.css +0 -0
  20. /package/es/{project-list → project-select}/index.less +0 -0
  21. /package/es/{project-list → project-select}/style/index.d.ts +0 -0
  22. /package/es/{project-list → project-select}/style/index.js +0 -0
  23. /package/es/{project-list → project-select}/style/less.d.ts +0 -0
  24. /package/es/{project-list → project-select}/style/less.js +0 -0
  25. /package/es/{project-list → project-select}/types.js +0 -0
  26. /package/es/{project-list → project-select}/useApi.d.ts +0 -0
  27. /package/es/{project-list → project-select}/useApi.js +0 -0
  28. /package/lib/{project-list/ProjectList.d.ts → project-select/ProjectSelect.d.ts} +0 -0
  29. /package/lib/{project-list → project-select}/_atomic.css +0 -0
  30. /package/lib/{project-list → project-select}/index.css +0 -0
  31. /package/lib/{project-list → project-select}/index.less +0 -0
  32. /package/lib/{project-list → project-select}/style/index.d.ts +0 -0
  33. /package/lib/{project-list → project-select}/style/index.js +0 -0
  34. /package/lib/{project-list → project-select}/style/less.d.ts +0 -0
  35. /package/lib/{project-list → project-select}/style/less.js +0 -0
  36. /package/lib/{project-list → project-select}/types.js +0 -0
  37. /package/lib/{project-list → project-select}/useApi.d.ts +0 -0
  38. /package/lib/{project-list → project-select}/useApi.js +0 -0
package/es/index.d.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  export * from "./button";
2
- export * from "./project-list";
2
+ export * from "./project-select";
3
3
  declare namespace _default {
4
4
  export { install };
5
5
  export { version };
6
6
  }
7
7
  export default _default;
8
8
  export function install(app: any): void;
9
- export const version: "0.1.0";
10
- export { Button, ProjectList };
9
+ export const version: "1.0.0";
10
+ export { Button, ProjectSelect };
package/es/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  import { Button } from "./button";
2
- import { ProjectList } from "./project-list";
3
- const version = "0.1.0";
2
+ import { ProjectSelect } from "./project-select";
3
+ const version = "1.0.0";
4
4
  function install(app) {
5
5
  const components = [
6
6
  Button,
7
- ProjectList
7
+ ProjectSelect
8
8
  ];
9
9
  components.forEach((item) => {
10
10
  if (item.install) {
@@ -15,14 +15,14 @@ function install(app) {
15
15
  });
16
16
  }
17
17
  export * from "./button";
18
- export * from "./project-list";
18
+ export * from "./project-select";
19
19
  var stdin_default = {
20
20
  install,
21
21
  version
22
22
  };
23
23
  export {
24
24
  Button,
25
- ProjectList,
25
+ ProjectSelect,
26
26
  stdin_default as default,
27
27
  install,
28
28
  version
@@ -6,7 +6,7 @@ import { projectListProps } from "./types";
6
6
  import { useApi } from "./useApi";
7
7
  import "./index.css";
8
8
  var stdin_default = defineComponent({
9
- name: "ProjectList",
9
+ name: "ProjectSelect",
10
10
  props: projectListProps,
11
11
  emits: ["update:show", "update:modelValue"],
12
12
  setup(props, {
@@ -0,0 +1,3 @@
1
+ import _ProjectSelect from './ProjectSelect';
2
+ export default _ProjectSelect;
3
+ export type { ProjectSelectProps, ProjectItem } from './types';
@@ -0,0 +1,5 @@
1
+ import _ProjectSelect from "./ProjectSelect";
2
+ var stdin_default = _ProjectSelect;
3
+ export {
4
+ stdin_default as default
5
+ };
@@ -19,4 +19,4 @@ export declare const projectListProps: {
19
19
  type: PropType<(val: boolean) => void>;
20
20
  };
21
21
  };
22
- export type ProjectListProps = ExtractPropTypes<typeof projectListProps>;
22
+ export type ProjectSelectProps = ExtractPropTypes<typeof projectListProps>;
package/lib/index.d.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  export * from "./button";
2
- export * from "./project-list";
2
+ export * from "./project-select";
3
3
  declare namespace _default {
4
4
  export { install };
5
5
  export { version };
6
6
  }
7
7
  export default _default;
8
8
  export function install(app: any): void;
9
- export const version: "0.1.0";
10
- export { Button, ProjectList };
9
+ export const version: "1.0.0";
10
+ export { Button, ProjectSelect };
package/lib/index.js CHANGED
@@ -19,21 +19,21 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
19
19
  var stdin_exports = {};
20
20
  __export(stdin_exports, {
21
21
  Button: () => import_button.Button,
22
- ProjectList: () => import_project_list.ProjectList,
22
+ ProjectSelect: () => import_project_select.ProjectSelect,
23
23
  default: () => stdin_default,
24
24
  install: () => install,
25
25
  version: () => version
26
26
  });
27
27
  module.exports = __toCommonJS(stdin_exports);
28
28
  var import_button = require("./button");
29
- var import_project_list = require("./project-list");
29
+ var import_project_select = require("./project-select");
30
30
  __reExport(stdin_exports, require("./button"), module.exports);
31
- __reExport(stdin_exports, require("./project-list"), module.exports);
32
- const version = "0.1.0";
31
+ __reExport(stdin_exports, require("./project-select"), module.exports);
32
+ const version = "1.0.0";
33
33
  function install(app) {
34
34
  const components = [
35
35
  import_button.Button,
36
- import_project_list.ProjectList
36
+ import_project_select.ProjectSelect
37
37
  ];
38
38
  components.forEach((item) => {
39
39
  if (item.install) {
@@ -28,7 +28,7 @@ var import_types = require("./types");
28
28
  var import_useApi = require("./useApi");
29
29
  var import_index = require("./index.css");
30
30
  var stdin_default = (0, import_vue2.defineComponent)({
31
- name: "ProjectList",
31
+ name: "ProjectSelect",
32
32
  props: import_types.projectListProps,
33
33
  emits: ["update:show", "update:modelValue"],
34
34
  setup(props, {
@@ -0,0 +1,3 @@
1
+ import _ProjectSelect from './ProjectSelect';
2
+ export default _ProjectSelect;
3
+ export type { ProjectSelectProps, ProjectItem } from './types';
@@ -30,5 +30,5 @@ __export(stdin_exports, {
30
30
  default: () => stdin_default
31
31
  });
32
32
  module.exports = __toCommonJS(stdin_exports);
33
- var import_ProjectList = __toESM(require("./ProjectList"));
34
- var stdin_default = import_ProjectList.default;
33
+ var import_ProjectSelect = __toESM(require("./ProjectSelect"));
34
+ var stdin_default = import_ProjectSelect.default;
@@ -19,4 +19,4 @@ export declare const projectListProps: {
19
19
  type: PropType<(val: boolean) => void>;
20
20
  };
21
21
  };
22
- export type ProjectListProps = ExtractPropTypes<typeof projectListProps>;
22
+ export type ProjectSelectProps = ExtractPropTypes<typeof projectListProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cgboiler/biz-mobile",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -1,3 +0,0 @@
1
- import _ProjectList from './ProjectList';
2
- export default _ProjectList;
3
- export type { ProjectListProps, ProjectItem } from './types';
@@ -1,5 +0,0 @@
1
- import _ProjectList from "./ProjectList";
2
- var stdin_default = _ProjectList;
3
- export {
4
- stdin_default as default
5
- };
@@ -1,3 +0,0 @@
1
- import _ProjectList from './ProjectList';
2
- export default _ProjectList;
3
- export type { ProjectListProps, ProjectItem } from './types';
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes