@pnt-team/pnt-component-frontend 0.0.47 → 0.0.51

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.
@@ -0,0 +1,12 @@
1
+ declare const _default: {
2
+ development: {
3
+ API: string;
4
+ };
5
+ test: {
6
+ API: string;
7
+ };
8
+ production: {
9
+ API: string;
10
+ };
11
+ };
12
+ export default _default;
@@ -0,0 +1,39 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/configs/host.ts
20
+ var host_exports = {};
21
+ __export(host_exports, {
22
+ default: () => host_default
23
+ });
24
+ module.exports = __toCommonJS(host_exports);
25
+ var host_default = {
26
+ development: {
27
+ // 开发环境接口请求
28
+ API: "/api"
29
+ },
30
+ test: {
31
+ // 测试环境接口地址
32
+ API: "http://43.134.150.67"
33
+ },
34
+ production: {
35
+ // 正式环境接口地址
36
+ API: "http://43.134.150.67"
37
+ // 任意ip即可, pnt主应用会自动替换,
38
+ }
39
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50SWQiOiJ1cy0xMDRmZTliNDZmZGY0NTM0YmU2NjNlYzllYWE5ZWEyZSIsImFjY291bnROYW1lIjoidl9id3dlaXdhbmciLCJleHAiOjE3ODkwNTIzODEsImV4cFRva2VuIjoxNzg5MDUxNTgxLCJqdGkiOiJjM2M3NDFiZC0wYzUwLTRlMGQtODUyNy1lMTFhMjljNTk0OGEifQ.9pXGqQeActEb2GOnrKQCkOgfyiUb2B8-uD3colfArdM";
2
+ export default _default;
@@ -0,0 +1,25 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/configs/token.ts
20
+ var token_exports = {};
21
+ __export(token_exports, {
22
+ default: () => token_default
23
+ });
24
+ module.exports = __toCommonJS(token_exports);
25
+ var token_default = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50SWQiOiJ1cy0xMDRmZTliNDZmZGY0NTM0YmU2NjNlYzllYWE5ZWEyZSIsImFjY291bnROYW1lIjoidl9id3dlaXdhbmciLCJleHAiOjE3ODkwNTIzODEsImV4cFRva2VuIjoxNzg5MDUxNTgxLCJqdGkiOiJjM2M3NDFiZC0wYzUwLTRlMGQtODUyNy1lMTFhMjljNTk0OGEifQ.9pXGqQeActEb2GOnrKQCkOgfyiUb2B8-uD3colfArdM";
@@ -0,0 +1,12 @@
1
+ declare const _default: {
2
+ development: {
3
+ API: string;
4
+ };
5
+ test: {
6
+ API: string;
7
+ };
8
+ production: {
9
+ API: string;
10
+ };
11
+ };
12
+ export default _default;
@@ -0,0 +1,19 @@
1
+ // src/configs/host.ts
2
+ var host_default = {
3
+ development: {
4
+ // 开发环境接口请求
5
+ API: "/api"
6
+ },
7
+ test: {
8
+ // 测试环境接口地址
9
+ API: "http://43.134.150.67"
10
+ },
11
+ production: {
12
+ // 正式环境接口地址
13
+ API: "http://43.134.150.67"
14
+ // 任意ip即可, pnt主应用会自动替换,
15
+ }
16
+ };
17
+ export {
18
+ host_default as default
19
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50SWQiOiJ1cy0xMDRmZTliNDZmZGY0NTM0YmU2NjNlYzllYWE5ZWEyZSIsImFjY291bnROYW1lIjoidl9id3dlaXdhbmciLCJleHAiOjE3ODkwNTIzODEsImV4cFRva2VuIjoxNzg5MDUxNTgxLCJqdGkiOiJjM2M3NDFiZC0wYzUwLTRlMGQtODUyNy1lMTFhMjljNTk0OGEifQ.9pXGqQeActEb2GOnrKQCkOgfyiUb2B8-uD3colfArdM";
2
+ export default _default;
@@ -0,0 +1,5 @@
1
+ // src/configs/token.ts
2
+ var token_default = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50SWQiOiJ1cy0xMDRmZTliNDZmZGY0NTM0YmU2NjNlYzllYWE5ZWEyZSIsImFjY291bnROYW1lIjoidl9id3dlaXdhbmciLCJleHAiOjE3ODkwNTIzODEsImV4cFRva2VuIjoxNzg5MDUxNTgxLCJqdGkiOiJjM2M3NDFiZC0wYzUwLTRlMGQtODUyNy1lMTFhMjljNTk0OGEifQ.9pXGqQeActEb2GOnrKQCkOgfyiUb2B8-uD3colfArdM";
3
+ export {
4
+ token_default as default
5
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnt-team/pnt-component-frontend",
3
- "version": "0.0.47",
3
+ "version": "0.0.51",
4
4
  "description": "A react library developed with dumi",
5
5
  "license": "MIT",
6
6
  "exports": {