@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.
- package/es/index.d.ts +3 -3
- package/es/index.js +5 -5
- package/es/{project-list/ProjectList.js → project-select/ProjectSelect.js} +1 -1
- package/es/project-select/index.d.ts +3 -0
- package/es/project-select/index.js +5 -0
- package/es/{project-list → project-select}/types.d.ts +1 -1
- package/lib/index.d.ts +3 -3
- package/lib/index.js +5 -5
- package/lib/{project-list/ProjectList.js → project-select/ProjectSelect.js} +1 -1
- package/lib/project-select/index.d.ts +3 -0
- package/lib/{project-list → project-select}/index.js +2 -2
- package/lib/{project-list → project-select}/types.d.ts +1 -1
- package/package.json +1 -1
- package/es/project-list/index.d.ts +0 -3
- package/es/project-list/index.js +0 -5
- package/lib/project-list/index.d.ts +0 -3
- /package/es/{project-list/ProjectList.d.ts → project-select/ProjectSelect.d.ts} +0 -0
- /package/es/{project-list → project-select}/_atomic.css +0 -0
- /package/es/{project-list → project-select}/index.css +0 -0
- /package/es/{project-list → project-select}/index.less +0 -0
- /package/es/{project-list → project-select}/style/index.d.ts +0 -0
- /package/es/{project-list → project-select}/style/index.js +0 -0
- /package/es/{project-list → project-select}/style/less.d.ts +0 -0
- /package/es/{project-list → project-select}/style/less.js +0 -0
- /package/es/{project-list → project-select}/types.js +0 -0
- /package/es/{project-list → project-select}/useApi.d.ts +0 -0
- /package/es/{project-list → project-select}/useApi.js +0 -0
- /package/lib/{project-list/ProjectList.d.ts → project-select/ProjectSelect.d.ts} +0 -0
- /package/lib/{project-list → project-select}/_atomic.css +0 -0
- /package/lib/{project-list → project-select}/index.css +0 -0
- /package/lib/{project-list → project-select}/index.less +0 -0
- /package/lib/{project-list → project-select}/style/index.d.ts +0 -0
- /package/lib/{project-list → project-select}/style/index.js +0 -0
- /package/lib/{project-list → project-select}/style/less.d.ts +0 -0
- /package/lib/{project-list → project-select}/style/less.js +0 -0
- /package/lib/{project-list → project-select}/types.js +0 -0
- /package/lib/{project-list → project-select}/useApi.d.ts +0 -0
- /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-
|
|
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: "
|
|
10
|
-
export { Button,
|
|
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 {
|
|
3
|
-
const version = "
|
|
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
|
-
|
|
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-
|
|
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
|
-
|
|
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: "
|
|
9
|
+
name: "ProjectSelect",
|
|
10
10
|
props: projectListProps,
|
|
11
11
|
emits: ["update:show", "update:modelValue"],
|
|
12
12
|
setup(props, {
|
package/lib/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export * from "./button";
|
|
2
|
-
export * from "./project-
|
|
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: "
|
|
10
|
-
export { Button,
|
|
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
|
-
|
|
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
|
|
29
|
+
var import_project_select = require("./project-select");
|
|
30
30
|
__reExport(stdin_exports, require("./button"), module.exports);
|
|
31
|
-
__reExport(stdin_exports, require("./project-
|
|
32
|
-
const version = "
|
|
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
|
-
|
|
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: "
|
|
31
|
+
name: "ProjectSelect",
|
|
32
32
|
props: import_types.projectListProps,
|
|
33
33
|
emits: ["update:show", "update:modelValue"],
|
|
34
34
|
setup(props, {
|
|
@@ -30,5 +30,5 @@ __export(stdin_exports, {
|
|
|
30
30
|
default: () => stdin_default
|
|
31
31
|
});
|
|
32
32
|
module.exports = __toCommonJS(stdin_exports);
|
|
33
|
-
var
|
|
34
|
-
var stdin_default =
|
|
33
|
+
var import_ProjectSelect = __toESM(require("./ProjectSelect"));
|
|
34
|
+
var stdin_default = import_ProjectSelect.default;
|
package/package.json
CHANGED
package/es/project-list/index.js
DELETED
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|