nuudel-core 0.4.2 → 0.4.4
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/README.md +7 -1
- package/build/main/lib/common/envConfig.d.ts +1 -0
- package/build/main/lib/common/envConfig.js +6 -0
- package/build/main/lib/controls/formFields/RNFieldBooleanEdit.d.ts +2 -2
- package/build/main/lib/controls/formFields/RNFieldChoiceEdit.d.ts +2 -2
- package/build/main/lib/controls/formFields/RNFieldDateEdit.d.ts +2 -2
- package/build/main/lib/controls/formFields/RNFieldImageEdit.d.ts +2 -2
- package/build/main/lib/controls/formFields/RNFieldLookupEdit.d.ts +2 -2
- package/build/main/lib/controls/formFields/RNFieldNumberEdit.d.ts +2 -2
- package/build/main/lib/controls/formFields/RNFieldObjectEdit.d.ts +2 -2
- package/build/main/lib/controls/formFields/RNFieldTextEdit.d.ts +2 -2
- package/build/main/lib/controls/formFields/RNFieldUrlEdit.d.ts +2 -2
- package/build/module/lib/common/envConfig.d.ts +1 -0
- package/build/module/lib/common/envConfig.js +4 -0
- package/build/module/lib/controls/formFields/RNFieldBooleanEdit.d.ts +2 -2
- package/build/module/lib/controls/formFields/RNFieldChoiceEdit.d.ts +2 -2
- package/build/module/lib/controls/formFields/RNFieldDateEdit.d.ts +2 -2
- package/build/module/lib/controls/formFields/RNFieldImageEdit.d.ts +2 -2
- package/build/module/lib/controls/formFields/RNFieldLookupEdit.d.ts +2 -2
- package/build/module/lib/controls/formFields/RNFieldNumberEdit.d.ts +2 -2
- package/build/module/lib/controls/formFields/RNFieldObjectEdit.d.ts +2 -2
- package/build/module/lib/controls/formFields/RNFieldTextEdit.d.ts +2 -2
- package/build/module/lib/controls/formFields/RNFieldUrlEdit.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ git config --global push.default current
|
|
|
24
24
|
|
|
25
25
|
# npm
|
|
26
26
|
|
|
27
|
-
export NODE_AUTH_TOKEN=
|
|
27
|
+
export NODE_AUTH_TOKEN=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
|
|
28
28
|
npm login --registry=https://npm.pkg.github.com --scope=c0des1gn
|
|
29
29
|
npm login --registry=registry.npmjs.org
|
|
30
30
|
yarn
|
|
@@ -38,3 +38,9 @@ cd node_modules/node-sass && npm rebuild node-sass && cd ../..
|
|
|
38
38
|
# copy cli
|
|
39
39
|
|
|
40
40
|
npm install --global cpy-cli
|
|
41
|
+
|
|
42
|
+
// Instead of this:
|
|
43
|
+
import { TriangleIcon } from '@phosphor-icons/react'
|
|
44
|
+
|
|
45
|
+
// Do this:
|
|
46
|
+
import { TriangleIcon } from '@phosphor-icons/react/dist/csr/Triangle'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const env_1 = require("@next/env");
|
|
4
|
+
const projectDir = process.cwd();
|
|
5
|
+
(0, env_1.loadEnvConfig)(projectDir);
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW52Q29uZmlnLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2xpYi9jb21tb24vZW52Q29uZmlnLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsbUNBQTBDO0FBRTFDLE1BQU0sVUFBVSxHQUFHLE9BQU8sQ0FBQyxHQUFHLEVBQUUsQ0FBQztBQUNqQyxJQUFBLG1CQUFhLEVBQUMsVUFBVSxDQUFDLENBQUMifQ==
|
|
@@ -11,11 +11,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
11
11
|
active?: boolean;
|
|
12
12
|
client: any;
|
|
13
13
|
listname: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
14
|
value: any;
|
|
15
|
+
disabled?: boolean;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
valueChanged: (newValue: any) => void;
|
|
18
17
|
description?: string;
|
|
18
|
+
valueChanged: (newValue: any) => void;
|
|
19
19
|
errorMessage?: string;
|
|
20
20
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
21
21
|
controlMode: ControlMode;
|
|
@@ -11,11 +11,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
11
11
|
active?: boolean;
|
|
12
12
|
client: any;
|
|
13
13
|
listname: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
14
|
value: any;
|
|
15
|
+
disabled?: boolean;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
valueChanged: (newValue: any) => void;
|
|
18
17
|
description?: string;
|
|
18
|
+
valueChanged: (newValue: any) => void;
|
|
19
19
|
errorMessage?: string;
|
|
20
20
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
21
21
|
controlMode: ControlMode;
|
|
@@ -12,11 +12,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
12
12
|
active?: boolean;
|
|
13
13
|
client: any;
|
|
14
14
|
listname: string;
|
|
15
|
-
disabled?: boolean;
|
|
16
15
|
value: any;
|
|
16
|
+
disabled?: boolean;
|
|
17
17
|
required?: boolean;
|
|
18
|
-
valueChanged: (newValue: any) => void;
|
|
19
18
|
description?: string;
|
|
19
|
+
valueChanged: (newValue: any) => void;
|
|
20
20
|
errorMessage?: string;
|
|
21
21
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
22
22
|
controlMode: ControlMode;
|
|
@@ -10,11 +10,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
10
10
|
active?: boolean;
|
|
11
11
|
client: any;
|
|
12
12
|
listname: string;
|
|
13
|
-
disabled?: boolean;
|
|
14
13
|
value: any;
|
|
14
|
+
disabled?: boolean;
|
|
15
15
|
required?: boolean;
|
|
16
|
-
valueChanged: (newValue: any) => void;
|
|
17
16
|
description?: string;
|
|
17
|
+
valueChanged: (newValue: any) => void;
|
|
18
18
|
errorMessage?: string;
|
|
19
19
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
20
20
|
controlMode: import("nuudel-utils").ControlMode;
|
|
@@ -10,11 +10,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
10
10
|
active?: boolean;
|
|
11
11
|
client: any;
|
|
12
12
|
listname: string;
|
|
13
|
-
disabled?: boolean;
|
|
14
13
|
value: any;
|
|
14
|
+
disabled?: boolean;
|
|
15
15
|
required?: boolean;
|
|
16
|
-
valueChanged: (newValue: any) => void;
|
|
17
16
|
description?: string;
|
|
17
|
+
valueChanged: (newValue: any) => void;
|
|
18
18
|
errorMessage?: string;
|
|
19
19
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
20
20
|
controlMode: import("nuudel-utils").ControlMode;
|
|
@@ -11,11 +11,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
11
11
|
active?: boolean;
|
|
12
12
|
client: any;
|
|
13
13
|
listname: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
14
|
value: any;
|
|
15
|
+
disabled?: boolean;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
valueChanged: (newValue: any) => void;
|
|
18
17
|
description?: string;
|
|
18
|
+
valueChanged: (newValue: any) => void;
|
|
19
19
|
errorMessage?: string;
|
|
20
20
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
21
21
|
controlMode: ControlMode;
|
|
@@ -11,11 +11,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
11
11
|
active?: boolean;
|
|
12
12
|
client: any;
|
|
13
13
|
listname: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
14
|
value: any;
|
|
15
|
+
disabled?: boolean;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
valueChanged: (newValue: any) => void;
|
|
18
17
|
description?: string;
|
|
18
|
+
valueChanged: (newValue: any) => void;
|
|
19
19
|
errorMessage?: string;
|
|
20
20
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
21
21
|
controlMode: ControlMode;
|
|
@@ -11,11 +11,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
11
11
|
active?: boolean;
|
|
12
12
|
client: any;
|
|
13
13
|
listname: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
14
|
value: any;
|
|
15
|
+
disabled?: boolean;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
valueChanged: (newValue: any) => void;
|
|
18
17
|
description?: string;
|
|
18
|
+
valueChanged: (newValue: any) => void;
|
|
19
19
|
errorMessage?: string;
|
|
20
20
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
21
21
|
controlMode: ControlMode;
|
|
@@ -11,11 +11,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
11
11
|
active?: boolean;
|
|
12
12
|
client: any;
|
|
13
13
|
listname: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
14
|
value: any;
|
|
15
|
+
disabled?: boolean;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
valueChanged: (newValue: any) => void;
|
|
18
17
|
description?: string;
|
|
18
|
+
valueChanged: (newValue: any) => void;
|
|
19
19
|
errorMessage?: string;
|
|
20
20
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
21
21
|
controlMode: ControlMode;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { loadEnvConfig } from '@next/env';
|
|
2
|
+
const projectDir = process.cwd();
|
|
3
|
+
loadEnvConfig(projectDir);
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW52Q29uZmlnLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2xpYi9jb21tb24vZW52Q29uZmlnLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxXQUFXLENBQUM7QUFFMUMsTUFBTSxVQUFVLEdBQUcsT0FBTyxDQUFDLEdBQUcsRUFBRSxDQUFDO0FBQ2pDLGFBQWEsQ0FBQyxVQUFVLENBQUMsQ0FBQyJ9
|
|
@@ -11,11 +11,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
11
11
|
active?: boolean;
|
|
12
12
|
client: any;
|
|
13
13
|
listname: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
14
|
value: any;
|
|
15
|
+
disabled?: boolean;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
valueChanged: (newValue: any) => void;
|
|
18
17
|
description?: string;
|
|
18
|
+
valueChanged: (newValue: any) => void;
|
|
19
19
|
errorMessage?: string;
|
|
20
20
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
21
21
|
controlMode: ControlMode;
|
|
@@ -11,11 +11,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
11
11
|
active?: boolean;
|
|
12
12
|
client: any;
|
|
13
13
|
listname: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
14
|
value: any;
|
|
15
|
+
disabled?: boolean;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
valueChanged: (newValue: any) => void;
|
|
18
17
|
description?: string;
|
|
18
|
+
valueChanged: (newValue: any) => void;
|
|
19
19
|
errorMessage?: string;
|
|
20
20
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
21
21
|
controlMode: ControlMode;
|
|
@@ -12,11 +12,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
12
12
|
active?: boolean;
|
|
13
13
|
client: any;
|
|
14
14
|
listname: string;
|
|
15
|
-
disabled?: boolean;
|
|
16
15
|
value: any;
|
|
16
|
+
disabled?: boolean;
|
|
17
17
|
required?: boolean;
|
|
18
|
-
valueChanged: (newValue: any) => void;
|
|
19
18
|
description?: string;
|
|
19
|
+
valueChanged: (newValue: any) => void;
|
|
20
20
|
errorMessage?: string;
|
|
21
21
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
22
22
|
controlMode: ControlMode;
|
|
@@ -10,11 +10,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
10
10
|
active?: boolean;
|
|
11
11
|
client: any;
|
|
12
12
|
listname: string;
|
|
13
|
-
disabled?: boolean;
|
|
14
13
|
value: any;
|
|
14
|
+
disabled?: boolean;
|
|
15
15
|
required?: boolean;
|
|
16
|
-
valueChanged: (newValue: any) => void;
|
|
17
16
|
description?: string;
|
|
17
|
+
valueChanged: (newValue: any) => void;
|
|
18
18
|
errorMessage?: string;
|
|
19
19
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
20
20
|
controlMode: import("nuudel-utils").ControlMode;
|
|
@@ -10,11 +10,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
10
10
|
active?: boolean;
|
|
11
11
|
client: any;
|
|
12
12
|
listname: string;
|
|
13
|
-
disabled?: boolean;
|
|
14
13
|
value: any;
|
|
14
|
+
disabled?: boolean;
|
|
15
15
|
required?: boolean;
|
|
16
|
-
valueChanged: (newValue: any) => void;
|
|
17
16
|
description?: string;
|
|
17
|
+
valueChanged: (newValue: any) => void;
|
|
18
18
|
errorMessage?: string;
|
|
19
19
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
20
20
|
controlMode: import("nuudel-utils").ControlMode;
|
|
@@ -11,11 +11,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
11
11
|
active?: boolean;
|
|
12
12
|
client: any;
|
|
13
13
|
listname: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
14
|
value: any;
|
|
15
|
+
disabled?: boolean;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
valueChanged: (newValue: any) => void;
|
|
18
17
|
description?: string;
|
|
18
|
+
valueChanged: (newValue: any) => void;
|
|
19
19
|
errorMessage?: string;
|
|
20
20
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
21
21
|
controlMode: ControlMode;
|
|
@@ -11,11 +11,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
11
11
|
active?: boolean;
|
|
12
12
|
client: any;
|
|
13
13
|
listname: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
14
|
value: any;
|
|
15
|
+
disabled?: boolean;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
valueChanged: (newValue: any) => void;
|
|
18
17
|
description?: string;
|
|
18
|
+
valueChanged: (newValue: any) => void;
|
|
19
19
|
errorMessage?: string;
|
|
20
20
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
21
21
|
controlMode: ControlMode;
|
|
@@ -11,11 +11,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
11
11
|
active?: boolean;
|
|
12
12
|
client: any;
|
|
13
13
|
listname: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
14
|
value: any;
|
|
15
|
+
disabled?: boolean;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
valueChanged: (newValue: any) => void;
|
|
18
17
|
description?: string;
|
|
18
|
+
valueChanged: (newValue: any) => void;
|
|
19
19
|
errorMessage?: string;
|
|
20
20
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
21
21
|
controlMode: ControlMode;
|
|
@@ -11,11 +11,11 @@ declare const _default: import("react-redux").ConnectedComponent<React.FunctionC
|
|
|
11
11
|
active?: boolean;
|
|
12
12
|
client: any;
|
|
13
13
|
listname: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
14
|
value: any;
|
|
15
|
+
disabled?: boolean;
|
|
16
16
|
required?: boolean;
|
|
17
|
-
valueChanged: (newValue: any) => void;
|
|
18
17
|
description?: string;
|
|
18
|
+
valueChanged: (newValue: any) => void;
|
|
19
19
|
errorMessage?: string;
|
|
20
20
|
fieldSchema: import("../../services/datatypes/RenderListData").IFieldSchema;
|
|
21
21
|
controlMode: ControlMode;
|